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

63 Zeilen
1.3 KiB
Groovy

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.4'
}
}
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.2'
2019-03-10 09:48:17 +01:00
nettyVersion = '4.1.34.Final'
guavaVersion = '25.1-jre'
checkerFrameworkVersion = '2.7.0'
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)
}
}
}
repositories {
mavenLocal()
mavenCentral()
// for kyoripowered dependencies
maven {
url 'https://oss.sonatype.org/content/groups/public/'
}
// Brigadier
maven {
url "https://libraries.minecraft.net"
}
}
test {
reports {
junitXml.enabled = true
}
}
}