Initial BungeeCord edition

This commit is contained in:
Frank van der Heijden 2020-07-04 21:30:34 +02:00
parent 4416d55173
commit 23e8e80191
No known key found for this signature in database
GPG key ID: 26DA56488D314D11
75 changed files with 1931 additions and 396 deletions

View file

@ -4,6 +4,7 @@ plugins {
}
group = 'net.frankheijden.serverutils'
String dependencyDir = group + '.dependencies'
version = '1.5.3'
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
@ -42,17 +43,22 @@ subprojects {
toolVersion "8.25"
configFile = rootProject.file('config/checkstyle/checkstyle.xml')
ignoreFailures = false
maxErrors = 0
maxWarnings = 0
// ignoreFailures = false
// maxErrors = 0
// maxWarnings = 0
}
shadowJar.dependsOn checkstyleMain, checkstyleTest, test
}
repositories {
mavenCentral()
}
dependencies {
compile project(path: ':Common', configuration: 'shadow')
compile project(path: ':Bukkit', configuration: 'shadow')
implementation project(path: ':Common', configuration: 'shadow')
implementation project(path: ':Bukkit', configuration: 'shadow')
implementation project(path: ':Bungee', configuration: 'shadow')
}
build.dependsOn shadowJar