2022-04-10 22:49:31 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'de.steamwar'
|
2022-06-04 21:27:12 +02:00
|
|
|
version = ''
|
2022-04-10 22:49:31 +02:00
|
|
|
|
|
|
|
sourceCompatibility = 11
|
|
|
|
targetCompatibility = 11
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
java {
|
|
|
|
srcDirs = ['src/']
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDirs = ['src/']
|
|
|
|
exclude '**/*.java', '**/*.kt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
compileJava.options.encoding = 'UTF-8'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2022-08-23 17:45:05 +02:00
|
|
|
|
|
|
|
maven {
|
|
|
|
url = 'https://nexus.codecrafter47.de/content/repositories/public'
|
|
|
|
}
|
2022-04-10 22:49:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.22'
|
|
|
|
testCompileOnly 'org.projectlombok:lombok:1.18.22'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.22'
|
|
|
|
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
|
|
|
|
|
|
|
|
implementation files("${projectDir}/lib/BungeeCord.jar")
|
2022-08-23 17:45:05 +02:00
|
|
|
implementation 'codecrafter47.bungeetablistplus:bungeetablistplus-api-bungee:3.5.2'
|
2022-04-10 22:49:31 +02:00
|
|
|
}
|