geforkt von Mirrors/FastAsyncWorldEdit
Migrate Core to Kotlin DSL
Dieser Commit ist enthalten in:
Ursprung
ab8397e517
Commit
55100761a3
@ -2,4 +2,5 @@ object Versions {
|
|||||||
const val TEXT = "3.0.1"
|
const val TEXT = "3.0.1"
|
||||||
const val TEXT_EXTRAS = "3.0.2"
|
const val TEXT_EXTRAS = "3.0.2"
|
||||||
const val PISTON = "0.4.2"
|
const val PISTON = "0.4.2"
|
||||||
|
const val AUTO_VALUE = "1.6.5"
|
||||||
}
|
}
|
||||||
|
@ -1,53 +0,0 @@
|
|||||||
plugins {
|
|
||||||
id("java-library")
|
|
||||||
id("eclipse")
|
|
||||||
id("idea")
|
|
||||||
id("net.ltgt.apt-eclipse")
|
|
||||||
id("net.ltgt.apt-idea")
|
|
||||||
}
|
|
||||||
|
|
||||||
PlatformConfigKt.applyPlatformAndCoreConfiguration(project)
|
|
||||||
|
|
||||||
configurations.all { Configuration it ->
|
|
||||||
it.resolutionStrategy { ResolutionStrategy rs ->
|
|
||||||
rs.force("com.google.guava:guava:21.0")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
compile project(':worldedit-libs:core')
|
|
||||||
compile 'de.schlichtherle:truezip:6.8.3'
|
|
||||||
compile 'org.mozilla:rhino:1.7R5'
|
|
||||||
compile 'org.yaml:snakeyaml:1.9'
|
|
||||||
compile 'com.google.guava:guava:21.0'
|
|
||||||
compile 'com.google.code.findbugs:jsr305:1.3.9'
|
|
||||||
compile 'com.google.code.gson:gson:2.8.0'
|
|
||||||
compile 'com.googlecode.json-simple:json-simple:1.1.1'
|
|
||||||
compile 'org.slf4j:slf4j-api:1.7.26'
|
|
||||||
|
|
||||||
compileOnly project(':worldedit-libs:core:ap')
|
|
||||||
annotationProcessor project(':worldedit-libs:core:ap')
|
|
||||||
annotationProcessor "com.google.guava:guava:21.0"
|
|
||||||
def avVersion = "1.6.5"
|
|
||||||
compileOnly "com.google.auto.value:auto-value-annotations:$avVersion"
|
|
||||||
annotationProcessor "com.google.auto.value:auto-value:$avVersion"
|
|
||||||
//compile 'net.sf.trove4j:trove4j:3.0.3'
|
|
||||||
testCompile 'org.mockito:mockito-core:1.9.0-rc1'
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.withType(JavaCompile).configureEach {
|
|
||||||
dependsOn(":worldedit-libs:build")
|
|
||||||
it.options.compilerArgs.add("-Aarg.name.key.prefix=")
|
|
||||||
}
|
|
||||||
|
|
||||||
sourceSets {
|
|
||||||
main {
|
|
||||||
java {
|
|
||||||
srcDir 'src/main/java'
|
|
||||||
srcDir 'src/legacy/java'
|
|
||||||
}
|
|
||||||
resources {
|
|
||||||
srcDir 'src/main/resources'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
50
worldedit-core/build.gradle.kts
Normale Datei
50
worldedit-core/build.gradle.kts
Normale Datei
@ -0,0 +1,50 @@
|
|||||||
|
plugins {
|
||||||
|
id("java-library")
|
||||||
|
id("net.ltgt.apt-eclipse")
|
||||||
|
id("net.ltgt.apt-idea")
|
||||||
|
}
|
||||||
|
|
||||||
|
applyPlatformAndCoreConfiguration()
|
||||||
|
|
||||||
|
configurations.all {
|
||||||
|
resolutionStrategy {
|
||||||
|
force("com.google.guava:guava:21.0")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
"compile"(project(":worldedit-libs:core"))
|
||||||
|
"compile"("de.schlichtherle:truezip:6.8.3")
|
||||||
|
"compile"("rhino:js:1.7R2")
|
||||||
|
"compile"("org.yaml:snakeyaml:1.9")
|
||||||
|
"compile"("com.google.guava:guava:21.0")
|
||||||
|
"compile"("com.google.code.findbugs:jsr305:1.3.9")
|
||||||
|
"compile"("com.google.code.gson:gson:2.8.0")
|
||||||
|
"compile"("com.googlecode.json-simple:json-simple:1.1.1")
|
||||||
|
"compile"("org.slf4j:slf4j-api:1.7.26")
|
||||||
|
|
||||||
|
"compileOnly"(project(":worldedit-libs:core:ap"))
|
||||||
|
"annotationProcessor"(project(":worldedit-libs:core:ap"))
|
||||||
|
// ensure this is on the classpath for the AP
|
||||||
|
"annotationProcessor"("com.google.guava:guava:21.0")
|
||||||
|
"compileOnly"("com.google.auto.value:auto-value-annotations:${Versions.AUTO_VALUE}")
|
||||||
|
"annotationProcessor"("com.google.auto.value:auto-value:${Versions.AUTO_VALUE}")
|
||||||
|
"testCompile"("org.mockito:mockito-core:1.9.0-rc1")
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<JavaCompile>().configureEach {
|
||||||
|
dependsOn(":worldedit-libs:build")
|
||||||
|
options.compilerArgs.add("-Aarg.name.key.prefix=")
|
||||||
|
}
|
||||||
|
|
||||||
|
sourceSets {
|
||||||
|
main {
|
||||||
|
java {
|
||||||
|
srcDir("src/main/java")
|
||||||
|
srcDir("src/legacy/java")
|
||||||
|
}
|
||||||
|
resources {
|
||||||
|
srcDir("src/main/resources")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -4,14 +4,12 @@ plugins {
|
|||||||
kotlin("jvm") version "1.3.41"
|
kotlin("jvm") version "1.3.41"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
applyCommonConfiguration()
|
||||||
|
|
||||||
tasks.withType<KotlinCompile> {
|
tasks.withType<KotlinCompile> {
|
||||||
kotlinOptions.jvmTarget = "1.8"
|
kotlinOptions.jvmTarget = "1.8"
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
|
||||||
jcenter()
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
"implementation"(project(":worldedit-libs:core:ap"))
|
"implementation"(project(":worldedit-libs:core:ap"))
|
||||||
"implementation"(project(":worldedit-core"))
|
"implementation"(project(":worldedit-core"))
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren