mirror of
https://github.com/Minestom/Minestom.git
synced 2024-11-19 17:15:24 +01:00
20 lines
348 B
Groovy
20 lines
348 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'fr.themode.minestom'
|
|
version '1.0'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
implementation 'com.github.Adamaq01:ozao-net:2.3.1'
|
|
compile 'com.github.Querz:NBT:4.1'
|
|
}
|