mirror of
https://github.com/Minestom/Minestom.git
synced 2024-12-29 04:28:21 +01:00
49 lines
1.5 KiB
Groovy
49 lines
1.5 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'net.ltgt.apt' version '0.10'
|
|
id 'com.github.johnrengelman.shadow' version '4.0.4'
|
|
}
|
|
|
|
group 'net.minestom.server'
|
|
version '1.0'
|
|
|
|
sourceCompatibility = 1.11
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
|
|
// 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:f893cfbfe4'
|
|
|
|
// https://jitpack.io/#Articdive/Jnoise/1.0-SNAPSHOT
|
|
compile 'com.github.Articdive:Jnoise:1.0-SNAPSHOT'
|
|
|
|
// https://mvnrepository.com/artifact/javax.vecmath/vecmath
|
|
compile group: 'javax.vecmath', name: 'vecmath', version: '1.5.2' // Used for Fastnoise
|
|
|
|
compile 'net.kyori:text-api:3.0.3'
|
|
compile 'net.kyori:text-serializer-legacy:3.0.3'
|
|
compile 'net.kyori:text-serializer-gson:3.0.3'
|
|
compile 'net.kyori:text-serializer-plain:3.0.3'
|
|
}
|