|
From: <lh...@us...> - 2010-03-29 20:03:24
|
Revision: 389
http://tinytim.svn.sourceforge.net/tinytim/?rev=389&view=rev
Author: lheuer
Date: 2010-03-29 20:03:18 +0000 (Mon, 29 Mar 2010)
Log Message:
-----------
Updated to Gradle 0.9-preview-1. Still unusable (the build file, not Gradle)
Modified Paths:
--------------
tinytim/trunk/build.gradle
Modified: tinytim/trunk/build.gradle
===================================================================
--- tinytim/trunk/build.gradle 2010-03-24 09:48:56 UTC (rev 388)
+++ tinytim/trunk/build.gradle 2010-03-29 20:03:18 UTC (rev 389)
@@ -1,4 +1,4 @@
-// *Experimental* build file for Gradle
+// *Experimental* build file for Gradle *0.9* (preview)
// DO NOT use it. Don't even think about it!
group = 'org.tinytim'
@@ -6,8 +6,8 @@
version = '2.0.1'
bundleVersion = version
-usePlugin 'java'
-usePlugin 'osgi'
+apply plugin: 'java'
+apply plugin: 'osgi'
manifest.mainAttributes(
'Implementation-Title': 'tinyTiM',
@@ -34,10 +34,12 @@
testCompile group: 'org.tmapi', name: 'tmapi-tests', version: '2.0.3-SNAPSHOT'
}
-configure(jar.osgi) {
- 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'
+jar {
+ manifest {
+ 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'
+ }
}
test {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|