mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-16 15:45:45 +01:00
20 lines
591 B
Plaintext
20 lines
591 B
Plaintext
plugins {
|
|
`java-library`
|
|
}
|
|
|
|
applyPlatformAndCoreConfiguration()
|
|
|
|
dependencies {
|
|
"api"(project(":worldguard-libs:core"))
|
|
"api"("com.sk89q.worldedit:worldedit-core:${Versions.WORLDEDIT}")
|
|
"implementation"("org.flywaydb:flyway-core:3.0")
|
|
"implementation"("org.yaml:snakeyaml:1.33")
|
|
"implementation"("com.google.guava:guava:${Versions.GUAVA}")
|
|
|
|
"compileOnly"("com.google.code.findbugs:jsr305:${Versions.FINDBUGS}")
|
|
"testImplementation"("org.hamcrest:hamcrest-library:2.2")
|
|
}
|
|
|
|
tasks.withType<JavaCompile>().configureEach {
|
|
dependsOn(":worldguard-libs:build")
|
|
} |