mirror of
https://github.com/Minestom/Minestom.git
synced 2024-11-05 10:20:42 +01:00
48 lines
1.2 KiB
Groovy
48 lines
1.2 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'net.ltgt.apt' version '0.10'
|
|
}
|
|
|
|
group 'net.minestom.server'
|
|
version '1.0'
|
|
|
|
sourceCompatibility = 1.11
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
def lombokDependency = 'org.projectlombok:lombok:1.18.2'
|
|
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
|
|
compileOnly lombokDependency
|
|
|
|
apt lombokDependency
|
|
|
|
// https://mvnrepository.com/artifact/io.netty/netty-all
|
|
compile group: 'io.netty', name: 'netty-all', version: '4.1.48.Final'
|
|
|
|
implementation 'com.github.jhg023:Pbbl:1.0.1'
|
|
|
|
// https://mvnrepository.com/artifact/it.unimi.dsi/fastutil
|
|
implementation group: 'it.unimi.dsi', name: 'fastutil', version: '8.3.0'
|
|
|
|
implementation 'com.github.Querz:NBT:4.1'
|
|
implementation 'com.github.luben:zstd-jni:1.4.3-1'
|
|
implementation 'com.esotericsoftware:reflectasm:1.11.9'
|
|
|
|
// https://mvnrepository.com/artifact/com.google.code.gson/gson
|
|
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
|
|
|
|
compile 'com.github.TheMode:CommandBuilder:a5f9d78a66'
|
|
|
|
// https://mvnrepository.com/artifact/javax.vecmath/vecmath
|
|
compile group: 'javax.vecmath', name: 'vecmath', version: '1.5.2' // Used for Fastnoise
|
|
|
|
}
|