Minestom/build.gradle

53 lines
1.6 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' }
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'
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'
2019-09-14 18:00:18 +02:00
// https://jitpack.io/#Articdive/Jnoise
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
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core
api group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.13.2'
// SLF4J is the base for logging so we can easily switch to any logging system later on.
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl
api group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.13.2'
2020-05-04 08:58:22 +02:00
api 'net.kyori:text-api:3.0.3'
api 'net.kyori:text-serializer-legacy:3.0.3'
api 'net.kyori:text-serializer-gson:3.0.3'
api 'net.kyori:text-serializer-plain:3.0.3'
2019-08-03 15:25:24 +02:00
}