2018-07-24 14:08:55 -04:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2021-05-16 01:45:09 -04:00
|
|
|
id 'net.ltgt.errorprone' version "2.0.1" apply false
|
2021-03-31 16:04:06 -04:00
|
|
|
id 'org.cadixdev.licenser' version '0.5.1' apply false
|
2021-05-16 01:45:09 -04:00
|
|
|
id "com.github.johnrengelman.shadow" version "6.1.0" apply false
|
2018-07-24 14:08:55 -04:00
|
|
|
}
|
|
|
|
|
2018-07-31 16:12:41 -04:00
|
|
|
allprojects {
|
2021-05-13 04:13:15 -04:00
|
|
|
apply plugin: "net.ltgt.errorprone"
|
2020-08-21 19:09:04 -04:00
|
|
|
|
2018-07-31 16:12:41 -04:00
|
|
|
group 'com.velocitypowered'
|
2021-05-19 16:12:07 -04:00
|
|
|
version '4.0.0-SNAPSHOT'
|
2018-07-24 14:08:55 -04:00
|
|
|
|
2018-07-31 16:12:41 -04:00
|
|
|
ext {
|
|
|
|
// dependency versions
|
2021-03-08 16:47:04 -08:00
|
|
|
adventureVersion = '4.7.0'
|
2020-09-15 13:27:16 +02:00
|
|
|
junitVersion = '5.7.0'
|
|
|
|
slf4jVersion = '1.7.30'
|
2021-05-16 01:29:33 -04:00
|
|
|
log4jVersion = '2.14.1'
|
|
|
|
nettyVersion = '4.1.63.Final'
|
|
|
|
guavaVersion = '30.1.1-jre'
|
2020-09-15 13:27:16 +02:00
|
|
|
checkerFrameworkVersion = '3.6.1'
|
2021-05-16 01:29:33 -04:00
|
|
|
configurateVersion = '4.1.1'
|
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 {
|
2020-11-05 16:42:46 -05:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|
2020-06-23 21:56:59 -04:00
|
|
|
}
|
|
|
|
|
2018-07-31 16:12:41 -04:00
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
2020-07-29 09:43:16 +02:00
|
|
|
|
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/'
|
|
|
|
}
|
2020-07-29 09:43:16 +02:00
|
|
|
|
2020-11-15 23:33:16 -05:00
|
|
|
// Velocity repo
|
2018-12-29 09:28:24 -05:00
|
|
|
maven {
|
2020-11-15 23:33:16 -05:00
|
|
|
url "https://nexus.velocitypowered.com/repository/maven-public/"
|
2018-12-29 09:28:24 -05:00
|
|
|
}
|
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
|
|
|
}
|