13
0
geforkt von Mirrors/Velocity
Velocity/build.gradle

27 Zeilen
672 B
Groovy

plugins {
id 'java'
2018-07-24 21:59:28 +02:00
id 'com.github.johnrengelman.shadow' version '2.0.4'
}
2018-07-26 01:47:59 +02:00
group 'com.velocitypowered'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
2018-07-26 07:58:56 +02:00
targetCompatibility = 1.8
repositories {
2018-07-26 07:58:56 +02:00
mavenLocal()
mavenCentral()
}
dependencies {
2018-07-26 07:58:56 +02:00
compile 'com.google.code.gson:gson:2.8.5'
compile 'com.google.guava:guava:25.1-jre'
2018-07-24 21:59:28 +02:00
compile 'io.netty:netty-codec:4.1.27.Final'
compile 'io.netty:netty-codec-http:4.1.27.Final'
2018-07-26 07:58:56 +02:00
compile 'io.netty:netty-handler:4.1.27.Final'
compile 'net.kyori:text:1.12-1.5.0'
2018-07-26 07:58:56 +02:00
testCompile 'org.junit.jupiter:junit-jupiter-api:5.3.0-M1'
testCompile 'org.junit.jupiter:junit-jupiter-engine:5.3.0-M1'
}