2019-03-29 02:46:45 +01:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2019-04-26 05:05:16 +02:00
|
|
|
classpath 'com.github.jengelman.gradle.plugins:shadow:5.0.0'
|
2019-03-29 02:46:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-24 20:08:55 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2020-08-22 01:09:04 +02:00
|
|
|
id "com.github.spotbugs" version "4.2.4" apply false
|
2021-03-31 22:04:06 +02:00
|
|
|
id 'org.cadixdev.licenser' version '0.5.1' apply false
|
2018-07-24 20:08:55 +02:00
|
|
|
}
|
|
|
|
|
2018-07-31 22:12:41 +02:00
|
|
|
allprojects {
|
2020-08-22 01:09:04 +02:00
|
|
|
apply plugin: "com.github.spotbugs"
|
|
|
|
|
2018-07-31 22:12:41 +02:00
|
|
|
group 'com.velocitypowered'
|
2021-02-14 00:08:50 +01:00
|
|
|
version '1.1.5-SNAPSHOT'
|
2018-07-24 20:08:55 +02:00
|
|
|
|
2018-07-31 22:12:41 +02:00
|
|
|
ext {
|
|
|
|
// dependency versions
|
2020-07-22 03:00:38 +02:00
|
|
|
textVersion = '3.0.4'
|
2021-03-09 01:47:04 +01:00
|
|
|
adventureVersion = '4.7.0'
|
2020-10-14 22:08:20 +02:00
|
|
|
adventurePlatformVersion = '4.0.0-SNAPSHOT'
|
2020-09-15 13:27:16 +02:00
|
|
|
junitVersion = '5.7.0'
|
|
|
|
slf4jVersion = '1.7.30'
|
2020-07-22 03:00:38 +02:00
|
|
|
log4jVersion = '2.13.3'
|
2021-01-17 06:43:35 +01:00
|
|
|
nettyVersion = '4.1.58.Final'
|
2020-09-20 00:09:05 +02:00
|
|
|
guavaVersion = '25.1-jre'
|
2020-09-15 13:27:16 +02:00
|
|
|
checkerFrameworkVersion = '3.6.1'
|
2020-08-24 06:11:46 +02:00
|
|
|
configurateVersion = '3.7.1'
|
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)
|
|
|
|
}
|
|
|
|
}
|
2018-07-27 21:01:00 +02:00
|
|
|
}
|
2018-07-31 21:25:34 +02:00
|
|
|
|
2018-07-31 22:12:41 +02:00
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
2020-07-29 09:43:16 +02:00
|
|
|
|
2018-12-29 15:28:24 +01:00
|
|
|
// for kyoripowered dependencies
|
2018-07-31 22:12:41 +02:00
|
|
|
maven {
|
|
|
|
url 'https://oss.sonatype.org/content/groups/public/'
|
|
|
|
}
|
2020-07-29 09:43:16 +02:00
|
|
|
|
2020-11-16 05:33:16 +01:00
|
|
|
// Velocity repo
|
2018-12-29 15:28:24 +01:00
|
|
|
maven {
|
2020-11-16 05:33:16 +01:00
|
|
|
url "https://nexus.velocitypowered.com/repository/maven-public/"
|
2018-12-29 15:28:24 +01:00
|
|
|
}
|
2018-07-28 04:37:47 +02:00
|
|
|
}
|
|
|
|
|
2018-07-31 22:12:41 +02:00
|
|
|
test {
|
|
|
|
reports {
|
|
|
|
junitXml.enabled = true
|
|
|
|
}
|
2018-07-31 21:25:34 +02:00
|
|
|
}
|
2020-08-22 01:09:04 +02: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 01:30:32 +02:00
|
|
|
}
|