plugins { id 'java-library' id 'net.ltgt.apt' version '0.10' id 'org.jetbrains.kotlin.jvm' version '1.3.72' } allprojects { repositories { mavenCentral() maven { url 'https://libraries.minecraft.net' } maven { url 'https://jitpack.io' } } } group 'net.minestom.server' version '1.0' sourceCompatibility = 1.11 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 } } dependencies { testCompile group: 'junit', name: 'junit', version: '4.12' 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' api 'com.github.jhg023:Pbbl:1.0.2' // https://mvnrepository.com/artifact/it.unimi.dsi/fastutil api group: 'it.unimi.dsi', name: 'fastutil', version: '8.3.0' // https://mvnrepository.com/artifact/com.google.code.gson/gson api group: 'com.google.code.gson', name: 'gson', version: '2.8.6' // https://jitpack.io/#Articdive/Jnoise api 'com.github.Articdive:Jnoise:145c910a1e' // https://mvnrepository.com/artifact/org.rocksdb/rocksdbjni api group: 'org.rocksdb', name: 'rocksdbjni', version: '6.8.1' // https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core api group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.13.3' // 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.3' api 'com.mojang:authlib:1.5.21' api 'org.projectlombok:lombok:1.18.12' annotationProcessor 'org.projectlombok:lombok:1.18.12' // Pathfinding implementation 'com.github.MadMartian:hydrazine-path-finding:1.1.0' api "org.jetbrains.kotlin:kotlin-stdlib-jdk8" api 'com.github.jglrxavpok:Hephaistos:v1.0.3' }