2019-03-28 21:46:45 -04:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2019-04-25 23:05:16 -04:00
|
|
|
classpath 'com.github.jengelman.gradle.plugins:shadow:5.0.0'
|
2019-03-28 21:46:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-24 14:08:55 -04:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
2018-07-31 16:12:41 -04:00
|
|
|
allprojects {
|
|
|
|
group 'com.velocitypowered'
|
2019-06-17 23:51:17 -04:00
|
|
|
version '1.1.0-SNAPSHOT'
|
2018-07-24 14:08:55 -04:00
|
|
|
|
2018-07-31 16:12:41 -04:00
|
|
|
ext {
|
|
|
|
// dependency versions
|
2020-03-29 16:13:43 -07:00
|
|
|
textVersion = '3.0.3'
|
2020-06-28 21:23:01 -04:00
|
|
|
adventureVersion = '4.0.0-SNAPSHOT'
|
2018-07-31 16:12:41 -04:00
|
|
|
junitVersion = '5.3.0-M1'
|
2018-08-20 19:30:32 -04:00
|
|
|
slf4jVersion = '1.7.25'
|
2019-03-28 22:27:51 -04:00
|
|
|
log4jVersion = '2.11.2'
|
2020-06-22 20:42:42 -04:00
|
|
|
nettyVersion = '4.1.50.Final'
|
2018-08-01 00:20:39 -04:00
|
|
|
guavaVersion = '25.1-jre'
|
2019-03-28 22:27:51 -04:00
|
|
|
checkerFrameworkVersion = '2.7.0'
|
2019-06-18 07:45:45 -04:00
|
|
|
configurateVersion = '3.6'
|
2018-08-21 23:35:09 -04:00
|
|
|
|
2018-09-03 21:02:11 -04: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 15:01:00 -04:00
|
|
|
}
|
2018-07-31 15:25:34 -04:00
|
|
|
|
2020-06-23 21:56:59 -04:00
|
|
|
java {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
2018-07-31 16:12:41 -04:00
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
2018-12-29 09:28:24 -05:00
|
|
|
|
|
|
|
// for kyoripowered dependencies
|
2018-07-31 16:12:41 -04:00
|
|
|
maven {
|
|
|
|
url 'https://oss.sonatype.org/content/groups/public/'
|
|
|
|
}
|
2018-12-29 09:28:24 -05:00
|
|
|
|
|
|
|
// Brigadier
|
|
|
|
maven {
|
|
|
|
url "https://libraries.minecraft.net"
|
|
|
|
}
|
2019-06-18 07:48:03 -04:00
|
|
|
|
|
|
|
// Configurate
|
|
|
|
maven {
|
|
|
|
name = 'sponge'
|
|
|
|
url = 'https://repo.spongepowered.org/maven'
|
|
|
|
}
|
2018-07-27 19:37:47 -07:00
|
|
|
}
|
|
|
|
|
2018-07-31 16:12:41 -04:00
|
|
|
test {
|
|
|
|
reports {
|
|
|
|
junitXml.enabled = true
|
|
|
|
}
|
2018-07-31 15:25:34 -04:00
|
|
|
}
|
2018-08-20 19:30:32 -04:00
|
|
|
}
|