2018-07-24 21:59:28 +02:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-24 20:08:55 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2018-07-24 21:59:28 +02:00
|
|
|
id 'com.github.johnrengelman.shadow' version '2.0.4'
|
2018-07-24 20:08:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
group 'io.minimum.minecraft'
|
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-07-24 21:59:28 +02:00
|
|
|
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'
|
2018-07-24 20:08:55 +02:00
|
|
|
compile 'com.google.guava:guava:25.1-jre'
|
|
|
|
compile 'com.google.code.gson:gson:2.8.5'
|
2018-07-24 20:34:59 +02:00
|
|
|
compile 'net.kyori:text:1.12-1.5.0'
|
2018-07-24 20:08:55 +02:00
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
|
|
}
|