FELIX-247: add bundle:ant goal, which creates a custom Ant script to build the bundle (run ant:ant first)
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@629050 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bundleplugin/src/main/resources/build.xml b/bundleplugin/src/main/resources/build.xml
index 24dce51..5cee4f1 100644
--- a/bundleplugin/src/main/resources/build.xml
+++ b/bundleplugin/src/main/resources/build.xml
@@ -20,7 +20,7 @@
<echo message="Please run: $ant -projecthelp"/>
</target>
- <property name="bnd.version" value="BND_VERSION"/>
+ <property name="bnd.version" value="0.0.238"/>
<target name="get-bnd"
depends="test-offline"
@@ -42,7 +42,7 @@
<target name="package" depends="compile,test,get-bnd" description="Package the bundle">
<pathconvert property="bnd.classpath" refid="build.classpath" pathsep=","/>
- <bnd files="maven-build.bnd" classpath="${bnd.classpath}"/>
+ <bnd files="maven-build.bnd" classpath="${maven.build.outputDir},${bnd.classpath}"/>
</target>
</project>