Small corrections in build.gradle

This commit is contained in:
Blue (Lukas Rieger) 2019-11-02 17:37:21 +01:00
parent 49ae2cf08f
commit 7c1221552c
1 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
plugins {
id 'com.github.johnrengelman.shadow' version '5.1.0'
id 'java'
id 'com.github.johnrengelman.shadow' version '5.1.0'
id 'java'
}
allprojects {
@ -30,12 +30,12 @@ dependencies {
shadowJar {
baseName = 'BlueMap'
version = '0.0.1'
version = '0.0.0'
classifier = null
}
jar {
manifest {
attributes 'Main-Class' : "de.bluecolored.bluemap.cli.BlueMapCLI"
}
manifest {
attributes 'Main-Class' : "de.bluecolored.bluemap.cli.BlueMapCLI"
}
}