mirror of
https://github.com/Minestom/Minestom.git
synced 2024-11-04 17:59:49 +01:00
42 lines
1.1 KiB
Groovy
42 lines
1.1 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
|
|
implementation group: 'com.github.jhg023', name: 'SimpleNet', version: '1.6.5'
|
|
// https://mvnrepository.com/artifact/it.unimi.dsi/fastutil
|
|
implementation 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
|
|
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
|
|
|
|
implementation 'com.github.TheMode:CommandBuilder:611d16a487'
|
|
|
|
}
|