13
0
geforkt von Mirrors/Velocity
Velocity/build.gradle

46 Zeilen
971 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'
slf4jVersion = '1.7.25'
log4jVersion = '2.11.0'
nettyVersion = '4.1.28.Final'
guavaVersion = '25.1-jre'
2018-08-22 05:35:09 +02:00
getCurrentBranchName = {
new ByteArrayOutputStream().withStream { os ->
exec {
executable = "git"
args = ["rev-parse", "--abbrev-ref", "HEAD"]
standardOutput = os
}
2018-08-22 06:03:06 +02:00
return os.toString().trim()
2018-08-22 05:35:09 +02:00
}
}
}
repositories {
mavenLocal()
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/groups/public/'
}
}
test {
reports {
junitXml.enabled = true
}
}
}