Added void-world for selection
Added loading indicators Added speed modifiers Code cleanup
This commit is contained in:
26
build.gradle
26
build.gradle
@@ -3,8 +3,7 @@ plugins {
|
||||
id "com.github.johnrengelman.shadow" version "7.1.0"
|
||||
}
|
||||
|
||||
group = '' +
|
||||
''
|
||||
group = 'eu.mhsl.craftattack.worldmuseum'
|
||||
version = '1.0'
|
||||
|
||||
repositories {
|
||||
@@ -13,13 +12,24 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
implementation 'com.github.Minestom:Minestom:8ad2c7701f'
|
||||
implementation 'com.github.waxeria:Minestom:e0427a36f3'
|
||||
implementation 'org.jctools:jctools-core:4.0.1'
|
||||
}
|
||||
|
||||
jar {
|
||||
manifest {
|
||||
attributes 'Main-Class': 'eu.mhsl.craftattack.worldmuseum.Main',
|
||||
"Multi-Release": true
|
||||
tasks {
|
||||
jar {
|
||||
manifest {
|
||||
attributes 'Main-Class': 'eu.mhsl.craftattack.worldmuseum.Main'
|
||||
attributes 'Multi-Release': true
|
||||
}
|
||||
duplicatesStrategy = 'exclude'
|
||||
from configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) }
|
||||
}
|
||||
build {
|
||||
dependsOn(shadowJar)
|
||||
}
|
||||
shadowJar {
|
||||
mergeServiceFiles()
|
||||
archiveClassifier.set("")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user