Skip to content
Snippets Groups Projects
Commit 369f6830 authored by felmer's avatar felmer
Browse files

SSDM-513: bug fixed in task compileInstaller of installation build.gradle

SVN: 31786
parent 775b2e77
No related branches found
No related tags found
No related merge requests found
...@@ -118,7 +118,6 @@ task(listVersions) << { ...@@ -118,7 +118,6 @@ task(listVersions) << {
println "subproject: ${p.name} [${p.version}]" println "subproject: ${p.name} [${p.version}]"
} }
} }
task(compileInstaller) << { task(compileInstaller) << {
def compression = 'default' def compression = 'default'
def kind = 'standard' def kind = 'standard'
...@@ -135,7 +134,7 @@ task(compileInstaller) << { ...@@ -135,7 +134,7 @@ task(compileInstaller) << {
def propertyManager = compilerContainer.getComponent(com.izforge.izpack.compiler.data.PropertyManager.class) def propertyManager = compilerContainer.getComponent(com.izforge.izpack.compiler.data.PropertyManager.class)
propertyManager.addProperty('installer.dist.dir', '../installation/' + installerDistDir) propertyManager.addProperty('installer.dist.dir', '../installation/' + installerDistDir)
propertyManager.addProperty('version.number', versionNumber) propertyManager.addProperty('version.number', versionNumber)
propertyManager.addProperty('revision.number', revisionNumber) propertyManager.addProperty('revision.number', Integer.toString(revisionNumber))
compilerConfig.executeCompiler() compilerConfig.executeCompiler()
fixJarFile(izPackJar) fixJarFile(izPackJar)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment