mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Use includeantruntime=false to avoid Ant 1.8 warning
git-svn-id: https://zxing.googlecode.com/svn/trunk@1631 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
7a6c384748
commit
5108924d05
|
@ -32,7 +32,8 @@
|
|||
target="1.5"
|
||||
optimize="true"
|
||||
debug="true"
|
||||
deprecation="true">
|
||||
deprecation="true"
|
||||
includeantruntime="false">
|
||||
<classpath>
|
||||
<pathelement location="${android-home}/platforms/android-3/android.jar"/>
|
||||
</classpath>
|
||||
|
|
|
@ -172,7 +172,8 @@ limitations under the License.
|
|||
<target name="compile" depends="resource-src, aidl">
|
||||
<javac encoding="ascii" target="1.5" debug="false" extdirs=""
|
||||
destdir="${out-classes}"
|
||||
bootclasspathref="android.target.classpath">
|
||||
bootclasspathref="android.target.classpath"
|
||||
includeantruntime="false">
|
||||
<src path="${source-folder}" />
|
||||
<src path="${gen-folder}" />
|
||||
<classpath>
|
||||
|
|
|
@ -175,7 +175,8 @@ limitations under the License.
|
|||
<target name="compile" depends="resource-src, aidl">
|
||||
<javac encoding="ascii" target="1.5" debug="false" extdirs=""
|
||||
destdir="${out-classes}"
|
||||
bootclasspathref="android.target.classpath">
|
||||
bootclasspathref="android.target.classpath"
|
||||
includeantruntime="false">
|
||||
<src path="${source-folder}" />
|
||||
<src path="${gen-folder}" />
|
||||
<classpath>
|
||||
|
|
|
@ -33,7 +33,8 @@
|
|||
optimize="true"
|
||||
debug="${generate-debug}"
|
||||
deprecation="true"
|
||||
fork="true"/>
|
||||
fork="true"
|
||||
includeantruntime="false"/>
|
||||
<jar jarfile="core.jar" basedir="build">
|
||||
<!-- These entries allow core.jar to function as an OSGi bundle, and also specifies
|
||||
additional attributes for compatibility with BugLabs's BUG platform.
|
||||
|
@ -107,7 +108,8 @@
|
|||
<javac srcdir="test/src"
|
||||
destdir="build-test"
|
||||
debug="true"
|
||||
deprecation="true">
|
||||
deprecation="true"
|
||||
includeantruntime="false">
|
||||
<classpath>
|
||||
<pathelement location="core.jar"/>
|
||||
<pathelement location="../javase/javase.jar"/>
|
||||
|
|
|
@ -87,7 +87,8 @@
|
|||
optimize="true"
|
||||
debug="true"
|
||||
deprecation="true"
|
||||
fork="true">
|
||||
fork="true"
|
||||
includeantruntime="false">
|
||||
<classpath refid="wtk-build-path"/>
|
||||
</javac>
|
||||
<jar jarfile="javame.jar" basedir="build"/>
|
||||
|
|
|
@ -37,7 +37,8 @@
|
|||
target="1.5"
|
||||
optimize="true"
|
||||
debug="true"
|
||||
deprecation="true">
|
||||
deprecation="true"
|
||||
includeantruntime="false">
|
||||
<classpath>
|
||||
<pathelement location="../core/core.jar"/>
|
||||
</classpath>
|
||||
|
|
|
@ -61,7 +61,8 @@
|
|||
target="1.5"
|
||||
optimize="true"
|
||||
debug="true"
|
||||
deprecation="true">
|
||||
deprecation="true"
|
||||
includeantruntime="false">
|
||||
<classpath>
|
||||
<fileset dir="web/WEB-INF/lib">
|
||||
<include name="*.jar"/>
|
||||
|
|
Loading…
Reference in a new issue