Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
Revert "Merge pull request #274 from IntellectualSites/api"
This reverts commit79d9bda912
, reversing changes made to0fcac39592
.
Dieser Commit ist enthalten in:
Ursprung
79d9bda912
Commit
0f1715ea9f
@ -2,9 +2,6 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
`java-library`
|
||||||
maven
|
|
||||||
java
|
|
||||||
`maven-publish`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
applyPlatformAndCoreConfiguration()
|
applyPlatformAndCoreConfiguration()
|
||||||
@ -84,44 +81,6 @@ tasks.named<Jar>("jar") {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val jar: Jar by tasks
|
|
||||||
jar.archiveName = "FAWE-Bukkit-API-${project.version}.jar"
|
|
||||||
jar.destinationDir = file("../mvn/com/boydti/FAWE-Bukkit-API/" + project.version)
|
|
||||||
|
|
||||||
task("writeNewPom") {
|
|
||||||
doLast {
|
|
||||||
maven.pom {
|
|
||||||
withGroovyBuilder {
|
|
||||||
"project" {
|
|
||||||
groupId = "com.boydti"
|
|
||||||
artifactId = "FAWE-Bukkit-API"
|
|
||||||
version = "project.version"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}.writeTo("../mvn/com/boydti/FAWE-Bukkit-API/${project.version}/FAWE-Bukkit-API-${project.version}.pom")
|
|
||||||
maven.pom {
|
|
||||||
withGroovyBuilder {
|
|
||||||
"project" {
|
|
||||||
groupId = "com.boydti"
|
|
||||||
artifactId = "FAWE-Bukkit-API"
|
|
||||||
version = "latest"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}.writeTo("../mvn/com/boydti/FAWE-Bukkit-API/latest/FAWE-Bukkit-API-latest.pom")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
task("dataContent") {
|
|
||||||
doLast {
|
|
||||||
copySpec {
|
|
||||||
from("../mvn/com/boydti/FAWE-Bukkit-API/${project.version}/")
|
|
||||||
into("../mvn/com/boydti/FAWE-Bukkit-API/latest/")
|
|
||||||
include("*.jar")
|
|
||||||
rename("FAWE-Bukkit-API-${project.version}.jar", "FAWE-Bukkit-API-latest.jar")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.named<ShadowJar>("shadowJar") {
|
tasks.named<ShadowJar>("shadowJar") {
|
||||||
dependencies {
|
dependencies {
|
||||||
relocate("org.slf4j", "com.sk89q.worldedit.slf4j")
|
relocate("org.slf4j", "com.sk89q.worldedit.slf4j")
|
||||||
@ -148,7 +107,3 @@ tasks.named<ShadowJar>("shadowJar") {
|
|||||||
tasks.named("assemble").configure {
|
tasks.named("assemble").configure {
|
||||||
dependsOn("shadowJar")
|
dependsOn("shadowJar")
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.named("dataContent").configure {
|
|
||||||
dependsOn("writeNewPom")
|
|
||||||
}
|
|
||||||
|
@ -5,9 +5,6 @@ import com.mendhak.gradlecrowdin.UploadSourceFileTask
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id("java-library")
|
id("java-library")
|
||||||
id("java")
|
|
||||||
id("maven")
|
|
||||||
id("maven-publish")
|
|
||||||
id("net.ltgt.apt-eclipse")
|
id("net.ltgt.apt-eclipse")
|
||||||
id("net.ltgt.apt-idea")
|
id("net.ltgt.apt-idea")
|
||||||
id("antlr")
|
id("antlr")
|
||||||
@ -101,45 +98,6 @@ tasks.named<Copy>("processResources") {
|
|||||||
"date" to "${rootProject.ext["date"]}")
|
"date" to "${rootProject.ext["date"]}")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val jar: Jar by tasks
|
|
||||||
jar.archiveName = "FAWE-API-${project.version}.jar"
|
|
||||||
jar.destinationDir = file("../mvn/com/boydti/FAWE-API/" + project.version)
|
|
||||||
|
|
||||||
task("writeNewPom") {
|
|
||||||
doLast {
|
|
||||||
maven.pom {
|
|
||||||
withGroovyBuilder {
|
|
||||||
"project" {
|
|
||||||
groupId = "com.boydti"
|
|
||||||
artifactId = "FAWE-API"
|
|
||||||
version = "project.version"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}.writeTo("../mvn/com/boydti/FAWE-API/${project.version}/FAWE-API-${project.version}.pom")
|
|
||||||
maven.pom {
|
|
||||||
withGroovyBuilder {
|
|
||||||
"project" {
|
|
||||||
groupId = "com.boydti"
|
|
||||||
artifactId = "FAWE-API"
|
|
||||||
version = "latest"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}.writeTo("../mvn/com/boydti/FAWE-API/latest/FAWE-API-latest.pom")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
task("dataContent") {
|
|
||||||
doLast {
|
|
||||||
copySpec {
|
|
||||||
from("../mvn/com/boydti/FAWE-API/${project.version}/")
|
|
||||||
into("../mvn/com/boydti/FAWE-API/latest/")
|
|
||||||
include("*.jar")
|
|
||||||
rename("FAWE-API-${project.version}.jar", "FAWE-API-latest.jar")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.named<ShadowJar>("shadowJar") {
|
tasks.named<ShadowJar>("shadowJar") {
|
||||||
dependencies {
|
dependencies {
|
||||||
include(dependency("com.github.luben:zstd-jni:1.4.3-1"))
|
include(dependency("com.github.luben:zstd-jni:1.4.3-1"))
|
||||||
@ -171,8 +129,3 @@ if (project.hasProperty(crowdinApiKey)) {
|
|||||||
dependsOn("crowdinDownload")
|
dependsOn("crowdinDownload")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.named("dataContent").configure {
|
|
||||||
dependsOn("writeNewPom")
|
|
||||||
}
|
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren