mirror of
https://github.com/zxing/zxing.git
synced 2025-01-12 19:57:27 -08:00
Renamed core OSGi bundle to "ZXing"; removed "level=" attribute on <jar> tasks since it singlehandly introduces a depence on Ant 1.7 and doesn't buy much. OS X for example does not ship with Ant 1.7 yet.
git-svn-id: https://zxing.googlecode.com/svn/trunk@437 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
4d1229bd65
commit
6effdd4bd0
|
@ -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"/>
|
||||
|
|
|
@ -42,14 +42,14 @@
|
|||
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"/>
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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">
|
||||
|
|
Loading…
Reference in a new issue