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

87 Zeilen
2.0 KiB
Groovy

buildscript {
repositories {
jcenter()
}
dependencies {
2019-04-26 05:05:16 +02:00
classpath 'com.github.jengelman.gradle.plugins:shadow:5.0.0'
}
}
plugins {
id 'java'
id "com.github.spotbugs" version "4.2.4" apply false
}
allprojects {
apply plugin: "com.github.spotbugs"
group 'com.velocitypowered'
2019-06-18 05:51:17 +02:00
version '1.1.0-SNAPSHOT'
ext {
// dependency versions
textVersion = '3.0.4'
adventureVersion = '4.0.0-SNAPSHOT'
junitVersion = '5.3.0-M1'
slf4jVersion = '1.7.25'
log4jVersion = '2.13.3'
nettyVersion = '4.1.51.Final'
guavaVersion = '25.1-jre'
checkerFrameworkVersion = '2.7.0'
configurateVersion = '3.6'
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)
}
}
}
2020-06-24 03:56:59 +02:00
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
repositories {
mavenLocal()
mavenCentral()
2020-07-29 09:43:16 +02:00
// for kyoripowered dependencies
maven {
url 'https://oss.sonatype.org/content/groups/public/'
}
2020-07-29 09:43:16 +02:00
// Brigadier
maven {
url "https://libraries.minecraft.net"
}
2019-06-18 13:48:03 +02:00
// Configurate
maven {
name = 'sponge'
url = 'https://repo.spongepowered.org/maven'
}
}
test {
reports {
junitXml.enabled = true
}
}
tasks.withType(com.github.spotbugs.snom.SpotBugsTask) {
reports {
html {
enabled = true
destination = file("$buildDir/reports/spotbugs/main/spotbugs.html")
stylesheet = 'fancy-hist.xsl'
}
}
}
}