13
0
geforkt von Mirrors/Velocity
Velocity/build.gradle
2018-07-25 19:47:59 -04:00

24 Zeilen
563 B
Groovy

plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '2.0.4'
}
group 'com.velocitypowered'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'io.netty:netty-handler:4.1.27.Final'
compile 'io.netty:netty-codec:4.1.27.Final'
compile 'io.netty:netty-codec-http:4.1.27.Final'
compile 'com.google.guava:guava:25.1-jre'
compile 'com.google.code.gson:gson:2.8.5'
compile 'net.kyori:text:1.12-1.5.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
}