mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-15 15:16:06 +01:00
f43a4eaad8
Update cached username on login. Bump WorldEdit dep version.
31 lines
701 B
Plaintext
31 lines
701 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:${Versions.WORLDEDIT}")
|
|
"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")
|
|
}
|
|
}
|
|
} |