25 lines
420 B
Groovy
25 lines
420 B
Groovy
plugins {
|
|
id 'java'
|
|
id "com.github.johnrengelman.shadow" version "7.1.0"
|
|
}
|
|
|
|
group = '' +
|
|
''
|
|
version = '1.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation 'com.github.Minestom:Minestom:8ad2c7701f'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes 'Main-Class': 'eu.mhsl.craftattack.worldmuseum.Main',
|
|
"Multi-Release": true
|
|
}
|
|
} |