Skip to content

Commit

Permalink
fix wilma release creation for #56
Browse files Browse the repository at this point in the history
  • Loading branch information
tkohegyi committed Jul 18, 2015
1 parent 6aeffb1 commit 918096a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions wilma-application/modules/wilma-engine/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License
along with Wilma. If not, see <http://www.gnu.org/licenses/>.
===========================================================================*/

description = 'wilma engine'
ext.componentDescription = "Wilma - Service Stub and Transparent Proxy"
buildscript {
repositories { jcenter() }
dependencies {
Expand Down Expand Up @@ -56,15 +56,16 @@ shadowJar {
'activemq.xsd.*',
'about.html']

archiveName = "wilma-$version.$buildNumber"+'.jar'
archiveName = "wilma-$version"+'.jar'
}

jar {
manifest.attributes( 'provider': 'gradle')
manifest.attributes( 'Main-Class': mainClassName)
manifest.attributes( 'Implementation-Title': "$componentName-v$version"+'.'+"$buildNumber")

finalizedBy shadowJar
manifest.attributes( 'Implementation-Title': "$componentDescription - V$version")
archiveName = "$componentName-$version"+'.jar'

finalizedBy shadowJar
}

repositories {
Expand Down

0 comments on commit 918096a

Please sign in to comment.