mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-12-26 02:57:42 +01:00
31 lines
694 B
Plaintext
31 lines
694 B
Plaintext
|
plugins {
|
||
|
id("java-library")
|
||
|
id("net.ltgt.apt-eclipse")
|
||
|
id("net.ltgt.apt-idea")
|
||
|
}
|
||
|
|
||
|
applyPlatformAndCoreConfiguration()
|
||
|
|
||
|
dependencies {
|
||
|
"compile"(project(":worldguard-libs:core"))
|
||
|
"compile"("com.sk89q.worldedit:worldedit-core:7.0.1-SNAPSHOT")
|
||
|
"implementation"("org.flywaydb:flyway-core:3.0")
|
||
|
|
||
|
"compileOnly"("com.google.code.findbugs:jsr305:1.3.9")
|
||
|
"testImplementation"("org.hamcrest:hamcrest-library:1.2.1")
|
||
|
}
|
||
|
|
||
|
tasks.withType<JavaCompile>().configureEach {
|
||
|
dependsOn(":worldguard-libs:build")
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
main {
|
||
|
java {
|
||
|
srcDir("src/main/java")
|
||
|
}
|
||
|
resources {
|
||
|
srcDir("src/main/resources")
|
||
|
}
|
||
|
}
|
||
|
}
|