Minestom/build.gradle

79 lines
2.3 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
}
allprojects {
repositories {
mavenCentral()
maven { url 'https://libraries.minecraft.net' }
maven { url 'https://jitpack.io' }
}
}
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
sourceSets {
main {
java {
srcDir 'src/main/java'
srcDir 'src/autogenerated/java'
}
}
generators {
java {
srcDir 'src/generators/java'
}
compileClasspath += sourceSets.main.runtimeClasspath
runtimeClasspath += sourceSets.main.runtimeClasspath
}
}
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
api 'io.netty:netty-handler:4.1.45.Final'
api 'io.netty:netty-codec:4.1.45.Final'
implementation 'io.netty:netty-transport-native-epoll:4.1.45.Final:linux-x86_64'
2020-04-16 16:40:29 +02:00
2020-05-29 15:31:11 +02:00
api 'com.github.jhg023:Pbbl:1.0.2'
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
// https://mvnrepository.com/artifact/com.google.code.gson/gson
2020-05-29 15:31:11 +02:00
api group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
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-06-23 21:58:31 +02:00
api 'org.mongodb.morphia:morphia:1.3.2'
api 'org.mongodb:mongo-java-driver:3.12.5'
2020-05-04 08:58:22 +02:00
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'
api 'com.mojang:authlib:1.5.21'
api 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
2020-05-29 20:44:03 +02:00
2020-06-21 14:01:03 +02:00
// Pathfinding
implementation 'com.github.MadMartian:hydrazine-path-finding:1.1.0'
2020-05-29 20:44:03 +02:00
2019-08-03 15:25:24 +02:00
}