3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-09-29 06:30:16 +02:00
Velocity/build.gradle

60 Zeilen
1.4 KiB
Groovy

plugins {
id 'java'
2021-12-09 19:29:32 +01:00
id 'com.github.johnrengelman.shadow' version '7.1.0' apply false
id 'org.cadixdev.licenser' version '0.6.1' apply false
}
allprojects {
group 'com.velocitypowered'
version '3.2.0-SNAPSHOT'
ext {
// dependency versions
adventureVersion = '4.10.0'
junitVersion = '5.7.0'
slf4jVersion = '1.7.30'
2021-12-29 00:14:37 +01:00
log4jVersion = '2.17.1'
nettyVersion = '5.0.0.Alpha1'
guavaVersion = '25.1-jre'
checkerFrameworkVersion = '3.6.1'
2021-09-01 12:36:00 +02:00
configurateVersion = '3.7.2'
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)
}
}
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
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
2020-11-16 05:33:16 +01:00
// Velocity repo
maven {
2020-11-16 05:33:16 +01:00
url "https://nexus.velocitypowered.com/repository/maven-public/"
}
}
test {
reports {
junitXml.enabled = true
}
}
}