2019-03-29 09:46:45 +08:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2019-04-26 11:05:16 +08:00
|
|
|
classpath 'com.github.jengelman.gradle.plugins:shadow:5.0.0'
|
2019-03-29 09:46:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-25 02:08:55 +08:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2020-08-22 07:09:04 +08:00
|
|
|
id "com.github.spotbugs" version "4.2.4" apply false
|
2018-07-25 02:08:55 +08:00
|
|
|
}
|
|
|
|
|
2018-08-01 04:12:41 +08:00
|
|
|
allprojects {
|
2020-08-22 07:09:04 +08:00
|
|
|
apply plugin: "com.github.spotbugs"
|
|
|
|
|
2018-08-01 04:12:41 +08:00
|
|
|
group 'com.velocitypowered'
|
2020-10-29 08:48:08 +08:00
|
|
|
version '1.1.2-SNAPSHOT'
|
2018-07-25 02:08:55 +08:00
|
|
|
|
2018-08-01 04:12:41 +08:00
|
|
|
ext {
|
|
|
|
// dependency versions
|
2020-07-22 09:00:38 +08:00
|
|
|
textVersion = '3.0.4'
|
2020-10-17 12:32:28 +08:00
|
|
|
adventureVersion = '4.1.1'
|
2020-10-15 04:08:20 +08:00
|
|
|
adventurePlatformVersion = '4.0.0-SNAPSHOT'
|
2020-09-15 19:27:16 +08:00
|
|
|
junitVersion = '5.7.0'
|
|
|
|
slf4jVersion = '1.7.30'
|
2020-07-22 09:00:38 +08:00
|
|
|
log4jVersion = '2.13.3'
|
2020-09-15 19:27:16 +08:00
|
|
|
nettyVersion = '4.1.52.Final'
|
2020-09-20 06:09:05 +08:00
|
|
|
guavaVersion = '25.1-jre'
|
2020-09-15 19:27:16 +08:00
|
|
|
checkerFrameworkVersion = '3.6.1'
|
2020-08-24 12:11:46 +08:00
|
|
|
configurateVersion = '3.7.1'
|
2018-08-22 11:35:09 +08:00
|
|
|
|
2018-09-04 09:02:11 +08:00
|
|
|
getCurrentShortRevision = {
|
|
|
|
new ByteArrayOutputStream().withStream { os ->
|
|
|
|
exec {
|
|
|
|
executable = "git"
|
|
|
|
args = ["rev-parse", "HEAD"]
|
|
|
|
standardOutput = os
|
|
|
|
}
|
|
|
|
return os.toString().trim().substring(0, 8)
|
|
|
|
}
|
|
|
|
}
|
2018-07-28 03:01:00 +08:00
|
|
|
}
|
2018-08-01 03:25:34 +08:00
|
|
|
|
2020-06-24 09:56:59 +08:00
|
|
|
java {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
2018-08-01 04:12:41 +08:00
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
2020-07-29 15:43:16 +08:00
|
|
|
|
2018-12-29 22:28:24 +08:00
|
|
|
// for kyoripowered dependencies
|
2018-08-01 04:12:41 +08:00
|
|
|
maven {
|
|
|
|
url 'https://oss.sonatype.org/content/groups/public/'
|
|
|
|
}
|
2020-07-29 15:43:16 +08:00
|
|
|
|
2018-12-29 22:28:24 +08:00
|
|
|
// Brigadier
|
|
|
|
maven {
|
|
|
|
url "https://libraries.minecraft.net"
|
|
|
|
}
|
2018-07-28 10:37:47 +08:00
|
|
|
}
|
|
|
|
|
2018-08-01 04:12:41 +08:00
|
|
|
test {
|
|
|
|
reports {
|
|
|
|
junitXml.enabled = true
|
|
|
|
}
|
2018-08-01 03:25:34 +08:00
|
|
|
}
|
2020-08-22 07:09:04 +08:00
|
|
|
|
|
|
|
tasks.withType(com.github.spotbugs.snom.SpotBugsTask) {
|
|
|
|
reports {
|
|
|
|
html {
|
|
|
|
enabled = true
|
|
|
|
destination = file("$buildDir/reports/spotbugs/main/spotbugs.html")
|
|
|
|
stylesheet = 'fancy-hist.xsl'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-21 07:30:32 +08:00
|
|
|
}
|