Minestom/build.gradle

46 lines
1.3 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
}
2020-04-24 03:25:58 +02:00
group 'net.minestom.server'
2019-08-03 15:25:24 +02:00
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' }
2020-04-01 13:16:18 +02:00
2019-08-03 15:25:24 +02:00
}
2019-09-14 18:00:18 +02:00
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
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'
2020-04-17 01:16:02 +02:00
implementation 'com.github.jhg023:Pbbl:1.0.1'
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'
2020-04-22 02:42:58 +02:00
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-28 20:00:58 +02:00
compile 'com.github.TheMode:CommandBuilder:f893cfbfe4'
compile 'com.github.Minestom:minecraft-text:69fd808e92'
2019-09-14 18:00:18 +02:00
2020-05-02 23:16:41 +02:00
// https://jitpack.io/#Articdive/Jnoise/1.0-SNAPSHOT
compile 'com.github.Articdive:Jnoise:1.0-SNAPSHOT'
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
}