Minestom/build.gradle

24 lines
587 B
Groovy
Raw Normal View History

2019-08-03 15:25:24 +02:00
plugins {
id 'java'
}
group 'fr.themode.minestom'
version '1.0'
2019-08-24 20:34:01 +02:00
sourceCompatibility = 1.11
2019-08-03 15:25:24 +02:00
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
2019-08-10 04:16:01 +02:00
compile 'com.github.Querz:NBT:4.1'
implementation 'com.github.luben:zstd-jni:1.4.3-1'
implementation 'com.esotericsoftware:reflectasm:1.11.9'
2019-08-29 02:15:52 +02:00
implementation 'com.github.LynnOwens:starlite:9971b899f7'
2019-09-07 11:42:33 +02:00
//implementation 'com.github.jhg023:SimpleNet:1.5.0'
implementation 'com.github.jhg023:SimpleNet:97dbc4951e'
2019-08-03 15:25:24 +02:00
}