Velocity/build.gradle

34 lines
1.0 KiB
Groovy
Raw Normal View History

plugins {
id 'java'
2018-07-25 03:59:28 +08:00
id 'com.github.johnrengelman.shadow' version '2.0.4'
}
2018-07-26 07:47:59 +08:00
group 'com.velocitypowered'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
2018-07-26 13:58:56 +08:00
targetCompatibility = 1.8
repositories {
2018-07-26 13:58:56 +08:00
mavenLocal()
mavenCentral()
}
dependencies {
2018-07-27 02:02:23 +08:00
def nettyVersion = '4.1.27.Final'
2018-07-26 13:58:56 +08:00
compile 'com.google.code.gson:gson:2.8.5'
compile 'com.google.guava:guava:25.1-jre'
2018-07-27 02:02:23 +08:00
compile "io.netty:netty-codec:${nettyVersion}"
compile "io.netty:netty-codec-http:${nettyVersion}"
compile "io.netty:netty-handler:${nettyVersion}"
2018-07-27 12:52:04 +08:00
compile "io.netty:netty-transport-native-epoll:${nettyVersion}"
compile "io.netty:netty-transport-native-epoll:${nettyVersion}:linux-x86_64"
compile 'net.kyori:text:1.12-1.5.0'
2018-07-27 13:54:40 +08:00
compile 'org.apache.logging.log4j:log4j-api:2.11.0'
compile 'org.apache.logging.log4j:log4j-core:2.11.0'
compile 'com.moandjiezana.toml:toml4j:0.7.2'
2018-07-26 13:58:56 +08:00
testCompile 'org.junit.jupiter:junit-jupiter-api:5.3.0-M1'
testCompile 'org.junit.jupiter:junit-jupiter-engine:5.3.0-M1'
}