geforkt von Mirrors/Velocity
31 Zeilen
869 B
Groovy
31 Zeilen
869 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'com.github.johnrengelman.shadow' version '2.0.4'
|
|
}
|
|
|
|
group 'com.velocitypowered'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
def nettyVersion = '4.1.27.Final'
|
|
|
|
compile 'com.google.code.gson:gson:2.8.5'
|
|
compile 'com.google.guava:guava:25.1-jre'
|
|
compile "io.netty:netty-codec:${nettyVersion}"
|
|
compile "io.netty:netty-codec-http:${nettyVersion}"
|
|
compile "io.netty:netty-handler:${nettyVersion}"
|
|
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'
|
|
testCompile 'org.junit.jupiter:junit-jupiter-api:5.3.0-M1'
|
|
testCompile 'org.junit.jupiter:junit-jupiter-engine:5.3.0-M1'
|
|
}
|