2018-07-24 20:08:55 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
2018-07-31 22:12:41 +02:00
|
|
|
allprojects {
|
|
|
|
group 'com.velocitypowered'
|
|
|
|
version '1.0-SNAPSHOT'
|
2018-07-24 20:08:55 +02:00
|
|
|
|
2018-07-31 22:12:41 +02:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
2018-07-24 20:08:55 +02:00
|
|
|
|
2018-07-31 22:12:41 +02:00
|
|
|
ext {
|
|
|
|
// dependency versions
|
|
|
|
junitVersion = '5.3.0-M1'
|
2018-08-21 01:30:32 +02:00
|
|
|
slf4jVersion = '1.7.25'
|
2018-09-08 06:32:53 +02:00
|
|
|
log4jVersion = '2.11.1'
|
2018-12-01 23:56:45 +01:00
|
|
|
nettyVersion = '4.1.32.Final'
|
2018-08-01 06:20:39 +02:00
|
|
|
guavaVersion = '25.1-jre'
|
2018-10-28 02:45:42 +01:00
|
|
|
checkerFrameworkVersion = '2.5.6'
|
2018-08-22 05:35:09 +02:00
|
|
|
|
2018-09-04 03:02:11 +02:00
|
|
|
getCurrentShortRevision = {
|
|
|
|
new ByteArrayOutputStream().withStream { os ->
|
|
|
|
exec {
|
|
|
|
executable = "git"
|
|
|
|
args = ["rev-parse", "HEAD"]
|
|
|
|
standardOutput = os
|
|
|
|
}
|
|
|
|
return os.toString().trim().substring(0, 8)
|
|
|
|
}
|
|
|
|
}
|
2018-07-27 21:01:00 +02:00
|
|
|
}
|
2018-07-31 21:25:34 +02:00
|
|
|
|
2018-07-31 22:12:41 +02:00
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
2018-12-29 15:28:24 +01:00
|
|
|
|
|
|
|
// for kyoripowered dependencies
|
2018-07-31 22:12:41 +02:00
|
|
|
maven {
|
|
|
|
url 'https://oss.sonatype.org/content/groups/public/'
|
|
|
|
}
|
2018-12-29 15:28:24 +01:00
|
|
|
|
|
|
|
// Brigadier
|
|
|
|
maven {
|
|
|
|
url "https://libraries.minecraft.net"
|
|
|
|
}
|
2018-07-28 04:37:47 +02:00
|
|
|
}
|
|
|
|
|
2018-07-31 22:12:41 +02:00
|
|
|
test {
|
|
|
|
reports {
|
|
|
|
junitXml.enabled = true
|
|
|
|
}
|
2018-07-31 21:25:34 +02:00
|
|
|
}
|
2018-08-21 01:30:32 +02:00
|
|
|
}
|