29 lines
557 B
Groovy
29 lines
557 B
Groovy
|
|
plugins {
|
|
id 'java'
|
|
id "com.github.johnrengelman.shadow" version "7.1.0"
|
|
}
|
|
|
|
group 'eu.mhsl.minenet'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
|
|
|
|
implementation 'com.github.Minestom:Minestom:ab5734334c'
|
|
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes 'Main-Class': 'eu.mhsl.minenet.minestom.pve.Main',
|
|
'Multi-Release': true
|
|
}
|
|
}
|