1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
Description: don't do internet stuff
Forwarded: no
Origin: Vendor
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2012-04-17
Bug-Debian: http://bugs.debian.org/536988
--- a/build.xml
+++ b/build.xml
@@ -171,14 +171,16 @@
<mkdir dir="tools"/>
<!--download the BND library for creating entries in the manifest.mf file which make it a compliant OSGi bundle. See http://www.osgi.org/ -->
+ <!--
<java classname="ca.odell.glazedlists.impl.HttpClient">
<classpath path="${classes.dir}"/>
<arg value="https://glazedlists.dev.java.net/files/documents/1073/110958/bnd.jar"/>
<arg value="tools/bnd.jar"/>
</java>
+ -->
<!-- prepare the bnd task which generates OSGi bundle JARs -->
- <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="tools/bnd.jar"/>
+ <!-- <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="tools/bnd.jar"/> -->
<!-- create a normal jar file -->
<jar destfile="${target.dir}/${jar.file}" update="true" index="true">
@@ -191,13 +193,13 @@
</jar>
<!-- use the BND tool to generate an OSGi jar from scratch, using the original JAR file as input -->
- <bnd classpath="${target.dir}/${jar.file}" output="${target.dir}/${jar.file}.osgi" exceptions="true" files="glazedlists.bnd"/>
+ <!-- <bnd classpath="${target.dir}/${jar.file}" output="${target.dir}/${jar.file}.osgi" exceptions="true" files="glazedlists.bnd"/> -->
<!-- delete the original jar file -->
- <delete file="${target.dir}/${jar.file}"/>
+ <!-- <delete file="${target.dir}/${jar.file}"/> -->
<!-- rename the OSGi Bundle to the orignal jar file's name -->
- <move file="${target.dir}/${jar.file}.osgi" toFile="${target.dir}/${jar.file}"/>
+ <!-- <move file="${target.dir}/${jar.file}.osgi" toFile="${target.dir}/${jar.file}"/> -->
</target>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|