You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by fm...@apache.org on 2009/10/12 09:25:39 UTC

svn commit: r824248 - /felix/trunk/scr/pom.xml

Author: fmeschbe
Date: Mon Oct 12 07:25:39 2009
New Revision: 824248

URL: http://svn.apache.org/viewvc?rev=824248&view=rev
Log:
FELIX-1735 project.build.directory is a file property and cannot
be used directly as a system property. Thus the Bamboo build
breaks. Prepare as a project property now.

Modified:
    felix/trunk/scr/pom.xml

Modified: felix/trunk/scr/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/scr/pom.xml?rev=824248&r1=824247&r2=824248&view=diff
==============================================================================
--- felix/trunk/scr/pom.xml (original)
+++ felix/trunk/scr/pom.xml Mon Oct 12 07:25:39 2009
@@ -63,6 +63,12 @@
         "project.bundle.file" system property may be set to the bundle JAR
         in the IDE launcher. 
     -->
+    <properties>
+        <project.bundle.file>
+            ${project.build.directory}/${project.build.finalName}.jar
+        </project.bundle.file>
+    </properties>
+    
     
     <dependencies>
         <dependency>
@@ -226,7 +232,7 @@
                             <systemProperties>
                                 <property>
                                     <name>project.bundle.file</name>
-                                    <value>${project.build.directory}/${project.build.finalName}.jar</value>
+                                    <value>${project.bundle.file}</value>
                                 </property>
                             </systemProperties>
                             <excludes>