From: <lh...@us...> - 2010-03-29 20:08:57
|
Revision: 390 http://tinytim.svn.sourceforge.net/tinytim/?rev=390&view=rev Author: lheuer Date: 2010-03-29 20:08:51 +0000 (Mon, 29 Mar 2010) Log Message: ----------- build simplification Modified Paths: -------------- tinytim/trunk/build.gradle Modified: tinytim/trunk/build.gradle =================================================================== --- tinytim/trunk/build.gradle 2010-03-29 20:03:18 UTC (rev 389) +++ tinytim/trunk/build.gradle 2010-03-29 20:08:51 UTC (rev 390) @@ -9,11 +9,6 @@ apply plugin: 'java' apply plugin: 'osgi' -manifest.mainAttributes( - 'Implementation-Title': 'tinyTiM', - 'Implementation-Version': version -) - gradle.taskGraph.whenReady {taskGraph -> if (!taskGraph.hasTask(':release')) { version += '-SNAPSHOT' @@ -36,6 +31,7 @@ jar { manifest { + attributes 'Implementation-Title': 'tinyTiM', 'Implementation-Version': version instruction 'Bundle-Description', 'tinyTiM - A tiny Topic Maps engine' instruction 'Import-Package', 'org.tmapi.core, org.tmapi.index' instruction 'Export-Package', 'org.tinytim.mio, org.tinytim.voc' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |