Minestom/build.gradle

23 lines
523 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'
implementation 'com.github.Adamaq01:ozao-net:2.3.1'
2019-08-10 04:16:01 +02:00
compile 'com.github.Querz:NBT:4.1'
2019-08-24 01:05:52 +02:00
// https://mvnrepository.com/artifact/org.lz4/lz4-java
implementation 'com.github.luben:zstd-jni:1.4.3-1'
implementation 'com.esotericsoftware:reflectasm:1.11.9'
2019-08-03 15:25:24 +02:00
}