Author: fmeschbe
Date: Mon Oct 12 08:11:27 2009
New Revision: 824258
URL: http://svn.apache.org/viewvc?rev=824258&view=rev
Log:
FELIX-1735 adding a string property for the build directory
to explicitly set the default as a string ...
Modified:
felix/trunk/scr/pom.xml
Modified: felix/trunk/scr/pom.xml
URL:
http://svn.apache.org/viewvc/felix/trunk/scr/pom.xml?rev=824258&r1=824257&r2=824258&view=diff
==============================================================================
--- felix/trunk/scr/pom.xml (original)
+++ felix/trunk/scr/pom.xml Mon Oct 12 08:11:27 2009
@@ -64,8 +64,11 @@
in the IDE launcher.
-->
<properties>
+ <bundle.build.name>
+ ${basedir}/target
+ </bundle.build.name>
<bundle.file.name>
- ${project.build.directory}/${project.build.finalName}.jar
+ ${bundle.build.name}/${project.build.finalName}.jar
</bundle.file.name>
</properties>
@@ -88,6 +91,12 @@
<artifactId>org.apache.felix.shell</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.osgi.core</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>net.sf.kxml</groupId>
@@ -129,6 +138,7 @@
</dependency>
</dependencies>
<build>
+ <directory>${bundle.build.name}</directory>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>