Minestom/build.gradle
2019-09-14 18:00:18 +02:00

39 lines
1.0 KiB
Groovy

plugins {
id 'java'
id 'net.ltgt.apt' version '0.10'
}
group 'fr.themode.minestom'
version '1.0'
sourceCompatibility = 1.11
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
def lombokDependency = 'org.projectlombok:lombok:1.18.2'
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compileOnly lombokDependency
apt lombokDependency
// https://mvnrepository.com/artifact/com.github.jhg023/SimpleNet
compile group: 'com.github.jhg023', name: 'SimpleNet', version: '1.5.1'
// https://mvnrepository.com/artifact/it.unimi.dsi/fastutil
compile group: 'it.unimi.dsi', name: 'fastutil', version: '8.3.0'
compile 'com.github.Querz:NBT:4.1'
implementation 'com.github.luben:zstd-jni:1.4.3-1'
implementation 'com.esotericsoftware:reflectasm:1.11.9'
implementation 'com.github.LynnOwens:starlite:9971b899f7'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
}