2019-07-30 05:25:13 +02:00
|
|
|
plugins {
|
2021-06-12 14:12:22 +02:00
|
|
|
`java-library`
|
2019-07-30 05:25:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
applyPlatformAndCoreConfiguration()
|
|
|
|
|
|
|
|
dependencies {
|
2020-07-17 07:11:12 +02:00
|
|
|
"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")
|
2022-12-09 13:23:57 +01:00
|
|
|
"implementation"("org.yaml:snakeyaml:1.33")
|
2020-07-17 07:11:12 +02:00
|
|
|
"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")
|
|
|
|
}
|