Minestom/build.gradle

42 lines
1.1 KiB
Groovy
Raw Normal View History

2019-08-03 15:25:24 +02:00
plugins {
id 'java'
2019-09-14 18:00:18 +02:00
id 'net.ltgt.apt' version '0.10'
2019-08-03 15:25:24 +02:00
}
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()
2020-04-01 13:16:18 +02:00
maven { url 'https://jitpack.io'}
maven { url "https://libraries.minecraft.net"}
2019-08-03 15:25:24 +02:00
}
2019-09-14 18:00:18 +02:00
def lombokDependency = 'org.projectlombok:lombok:1.18.2'
2019-08-03 15:25:24 +02:00
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
2019-09-14 18:00:18 +02:00
compileOnly lombokDependency
apt lombokDependency
// https://mvnrepository.com/artifact/com.github.jhg023/SimpleNet
2020-03-29 20:58:30 +02:00
implementation group: 'com.github.jhg023', name: 'SimpleNet', version: '1.6.5'
2019-09-14 18:00:18 +02:00
// https://mvnrepository.com/artifact/it.unimi.dsi/fastutil
2020-03-20 19:50:22 +01:00
implementation group: 'it.unimi.dsi', name: 'fastutil', version: '8.3.0'
2019-09-14 18:00:18 +02:00
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-14 18:00:18 +02:00
// https://mvnrepository.com/artifact/com.google.code.gson/gson
2020-03-20 19:50:22 +01:00
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
2020-04-01 13:16:18 +02:00
compile 'com.mojang:brigadier:1.0.17'
2019-09-14 18:00:18 +02:00
2019-08-03 15:25:24 +02:00
}