geforkt von Mirrors/Velocity
bbf861d3bc
For now, the API module only contains a few assorted utilities. More will be added later.
32 Zeilen
558 B
Groovy
32 Zeilen
558 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
allprojects {
|
|
group 'com.velocitypowered'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
ext {
|
|
// dependency versions
|
|
junitVersion = '5.3.0-M1'
|
|
log4jVersion = '2.11.0'
|
|
nettyVersion = '4.1.28.Final'
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven {
|
|
url 'https://oss.sonatype.org/content/groups/public/'
|
|
}
|
|
}
|
|
|
|
test {
|
|
reports {
|
|
junitXml.enabled = true
|
|
}
|
|
}
|
|
} |