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.30") "implementation"("com.google.guava:guava:${Versions.GUAVA}") "compileOnly"("com.google.code.findbugs:jsr305:${Versions.FINDBUGS}") "testImplementation"("org.hamcrest:hamcrest-library:1.2.1") } tasks.withType().configureEach { dependsOn(":worldguard-libs:build") }