Minestom/build.gradle

45 lines
1.2 KiB
Groovy
Raw Normal View History

2019-08-03 15:25:24 +02:00
plugins {
id 'java-library'
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
api group: 'io.netty', name: 'netty-all', version: '4.1.48.Final'
2020-04-16 16:40:29 +02:00
api 'com.github.jhg023:Pbbl:1.0.1'
2020-04-17 01:16:02 +02:00
2019-09-14 18:00:18 +02:00
// https://mvnrepository.com/artifact/it.unimi.dsi/fastutil
api group: 'it.unimi.dsi', name: 'fastutil', version: '8.3.0'
2019-09-14 18:00:18 +02:00
api 'com.github.Querz:NBT:4.1'
api '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
api group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
2020-04-05 10:15:21 +02:00
api 'com.github.TheMode:CommandBuilder:f893cfbfe4'
api '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
api 'com.github.Articdive:Jnoise:1.0-SNAPSHOT'
2020-05-02 23:16:41 +02:00
// https://mvnrepository.com/artifact/org.rocksdb/rocksdbjni
api group: 'org.rocksdb', name: 'rocksdbjni', version: '6.8.1'
2020-04-16 14:51:21 +02:00
2019-08-03 15:25:24 +02:00
}