Skip to content
Snippets Groups Projects
Commit 82a29504 authored by dgelessus's avatar dgelessus
Browse files

Fix names of archiveBaseName properties in Gradle Jar tasks

parent e52489c5
Branches
Tags
No related merge requests found
......@@ -25,7 +25,7 @@ java {
}
task fatJar(type: Jar) {
archivesBaseName = project.name + '-all'
archiveBaseName = project.name + '-all'
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
{
exclude "META-INF/*.SF"
......
......@@ -25,7 +25,7 @@ java {
}
task fatJar(type: Jar) {
archivesBaseName = project.name + '-all'
archiveBaseName = project.name + '-all'
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
{
exclude "META-INF/*.SF"
......
......@@ -62,7 +62,7 @@ jar {
}
task fatJar(type: Jar) {
archivesBaseName = project.name + '-all'
archiveBaseName = project.name + '-all'
manifest {
attributes(
'Main-Class': 'de.hhu.stups.codegenerator.CodeGenerator'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment