WorldGuard/worldguard-core/build.gradle.kts

20 lines
590 B
Plaintext
Raw Permalink Normal View History

2019-07-30 05:25:13 +02:00
plugins {
`java-library`
2019-07-30 05:25:13 +02:00
}
applyPlatformAndCoreConfiguration()
dependencies {
"api"(project(":worldguard-libs:core"))
"api"("com.sk89q.worldedit:worldedit-core:${Versions.WORLDEDIT}")
2019-07-30 05:25:13 +02:00
"implementation"("org.flywaydb:flyway-core:3.0")
"implementation"("org.yaml:snakeyaml:2.0")
"implementation"("com.google.guava:guava:${Versions.GUAVA}")
2019-07-30 05:25:13 +02:00
2022-12-09 13:23:57 +01:00
"compileOnly"("com.google.code.findbugs:jsr305:${Versions.FINDBUGS}")
"testImplementation"("org.hamcrest:hamcrest-library:2.2")
2019-07-30 05:25:13 +02:00
}
tasks.withType<JavaCompile>().configureEach {
dependsOn(":worldguard-libs:build")
}