mirror of
https://github.com/PaperMC/Velocity.git
synced 2025-01-06 14:24:41 +08:00
a028467e66
The Velocity API has had a lot of community input (special thanks to @hugmanrique who started the work, @lucko who contributed permissions support, and @Minecrell for providing initial feedback and an initial version of ServerListPlus). While the API is far from complete, there is enough available for people to start doing useful stuff with Velocity.
35 lines
625 B
Groovy
35 lines
625 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
allprojects {
|
|
group 'com.velocitypowered'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
ext {
|
|
// dependency versions
|
|
junitVersion = '5.3.0-M1'
|
|
slf4jVersion = '1.7.25'
|
|
log4jVersion = '2.11.0'
|
|
nettyVersion = '4.1.28.Final'
|
|
guavaVersion = '25.1-jre'
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven {
|
|
url 'https://oss.sonatype.org/content/groups/public/'
|
|
}
|
|
}
|
|
|
|
test {
|
|
reports {
|
|
junitXml.enabled = true
|
|
}
|
|
}
|
|
}
|