Minestom/build.gradle

48 lines
1.4 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'}
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
2020-04-16 16:40:29 +02:00
// https://mvnrepository.com/artifact/io.netty/netty-all
compile group: 'io.netty', name: 'netty-all', version: '4.1.48.Final'
2019-09-14 18:00:18 +02:00
// 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
2020-04-08 10:10:05 +02:00
implementation '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-05 10:15:21 +02:00
2020-04-08 10:10:05 +02:00
compile 'com.github.TheMode:CommandBuilder:611d16a487'
2019-09-14 18:00:18 +02:00
2020-04-16 14:51:21 +02:00
// https://mvnrepository.com/artifact/javax.vecmath/vecmath
compile group: 'javax.vecmath', name: 'vecmath', version: '1.5.2' // Used for Fastnoise
2019-08-03 15:25:24 +02:00
}