Initial commit. Very broken and only does Server List Ping!

This commit is contained in:
Andrew Steinborn
2018-07-24 14:08:55 -04:00
commit 666d07e2a8
29 changed files with 1264 additions and 0 deletions

21
build.gradle Normal file
View File

@@ -0,0 +1,21 @@
plugins {
id 'java'
}
group 'io.minimum.minecraft'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
compile 'io.netty:netty-all:4.1.27.Final'
compile 'com.google.guava:guava:25.1-jre'
compile 'com.google.code.gson:gson:2.8.5'
compile 'com.github.KyoriPowered:text:v1.12-1.5.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
}