Renamed core OSGi bundle to "ZXing"; removed "level=" attribute on <jar> tasks since...
authorsrowen <srowen@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Wed, 18 Jun 2008 17:40:14 +0000 (17:40 +0000)
committersrowen <srowen@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Wed, 18 Jun 2008 17:40:14 +0000 (17:40 +0000)
git-svn-id: http://zxing.googlecode.com/svn/trunk@437 59b500cc-1b3d-0410-9834-0bbf25fbcc57

build.xml
core/build.xml
javame/build.xml
javase/build.xml

index 661067a..5ebe7b4 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -48,7 +48,7 @@
   </target>
 
   <target name="release" depends="build,clean,javadoc">
-    <zip file="ZXing-${version}.zip" level="9">
+    <zip file="ZXing-${version}.zip">
       <zipfileset dir="." prefix="zxing-${version}">
         <exclude name="**/.*"/> <!-- exclude hidden files -->
         <include name="COPYING"/>
index 55f1602..ef39f63 100644 (file)
            debug="true"
            deprecation="true"
            fork="true"/>
-    <jar jarfile="core.jar" basedir="build" level="9">
+    <jar jarfile="core.jar" basedir="build">
       <!-- These entries allow core.jar to function as an OSGi bundle, and also specifices
            additional attributes for compatibility with BugLabs's BUG platform.
            Thanks to David Albert for this change. -->
       <manifest>
-        <attribute name="Bundle-Name" value="ZXing4Bug"/>
+        <attribute name="Bundle-Name" value="ZXing"/>
         <attribute name="Bundle-Vendor" value="ZXing Project"/>
-        <attribute name="Bundle-SymbolicName" value="ZXing4Bug"/>
+        <attribute name="Bundle-SymbolicName" value="ZXing"/>
         <attribute name="Bundle-Version" value="${version}"/>        
         <attribute name="Export-Package" value="com.google.zxing,com.google.zxing.common,com.google.zxing.client.result"/>
         <attribute name="Bug-Bundle-Type" value="Application"/>
index 20177a4..52f8a96 100644 (file)
@@ -78,7 +78,7 @@
            fork="true">
       <classpath refid="wtk-build-path"/>
     </javac>
-    <jar jarfile="javame.jar" basedir="build" level="9"/>
+    <jar jarfile="javame.jar" basedir="build"/>
   </target>
 
   <target name="compile-basic" depends="init">
index 88ed6cf..a5d51b5 100644 (file)
@@ -42,7 +42,7 @@
         <pathelement location="../core/core.jar"/>
       </classpath>
     </javac>
-    <jar jarfile="javase.jar" basedir="build" level="9"/>
+    <jar jarfile="javase.jar" basedir="build"/>
   </target>
 
   <target name="clean">