2007-11-14 07:27:06 -08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2007-11-28 09:19:36 -08:00
|
|
|
|
|
|
|
<!--
|
2008-06-24 12:57:41 -07:00
|
|
|
Copyright 2007 ZXing authors
|
2007-11-28 09:19:36 -08:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2012-02-04 03:19:51 -08:00
|
|
|
<project name="ZXing" default="release">
|
2007-11-14 07:27:06 -08:00
|
|
|
|
2007-11-19 10:33:02 -08:00
|
|
|
<property file="build.properties"/>
|
|
|
|
|
2012-02-04 03:19:51 -08:00
|
|
|
<target name="release" depends="javadoc">
|
2008-06-18 10:40:14 -07:00
|
|
|
<zip file="ZXing-${version}.zip">
|
2007-11-28 09:11:57 -08:00
|
|
|
<zipfileset dir="." prefix="zxing-${version}">
|
2008-03-12 12:35:16 -07:00
|
|
|
<exclude name="**/.*"/> <!-- exclude hidden files -->
|
2010-03-04 12:31:06 -08:00
|
|
|
<exclude name="**/.svn"/>
|
2010-09-13 03:58:48 -07:00
|
|
|
<exclude name="**/*.iml"/>
|
2008-06-24 12:57:41 -07:00
|
|
|
<include name="AUTHORS"/>
|
2007-11-28 09:11:57 -08:00
|
|
|
<include name="CHANGES"/>
|
2012-02-04 03:19:51 -08:00
|
|
|
<include name="COPYING"/>
|
|
|
|
<include name="NOTICE"/>
|
2007-11-28 09:11:57 -08:00
|
|
|
<include name="build.xml"/>
|
|
|
|
<include name="build.properties"/>
|
2012-02-04 03:19:51 -08:00
|
|
|
<include name="docs/**"/>
|
2010-03-04 12:31:06 -08:00
|
|
|
<include name="actionscript/**"/>
|
2008-02-14 13:06:57 -08:00
|
|
|
<include name="android/**"/>
|
2009-11-30 06:35:22 -08:00
|
|
|
<include name="android-integration/**"/>
|
|
|
|
<include name="androidtest/**"/>
|
2007-11-28 09:11:57 -08:00
|
|
|
<include name="core/**"/>
|
2008-06-24 12:57:41 -07:00
|
|
|
<include name="cpp/**"/>
|
2012-02-04 03:19:51 -08:00
|
|
|
<include name="csharp/**"/>
|
2008-07-10 13:25:42 -07:00
|
|
|
<include name="iphone/**"/>
|
2007-11-28 09:11:57 -08:00
|
|
|
<include name="javase/**"/>
|
2012-02-04 03:19:51 -08:00
|
|
|
<include name="jruby/**"/>
|
|
|
|
<include name="objc/**"/>
|
|
|
|
<include name="symbian/**"/>
|
2010-03-04 12:33:50 -08:00
|
|
|
<include name="zxing.appspot.com/**"/>
|
2008-05-02 15:18:38 -07:00
|
|
|
<include name="zxingorg/**"/>
|
2007-11-28 09:11:57 -08:00
|
|
|
</zipfileset>
|
2007-11-19 10:33:02 -08:00
|
|
|
</zip>
|
|
|
|
</target>
|
|
|
|
|
2007-12-10 10:08:36 -08:00
|
|
|
<target name="javadoc">
|
2012-04-06 00:17:15 -07:00
|
|
|
<delete dir="docs/javadoc"/>
|
2007-12-10 10:08:36 -08:00
|
|
|
<mkdir dir="docs/javadoc"/>
|
2012-04-06 00:17:15 -07:00
|
|
|
<javadoc failonerror="true"
|
|
|
|
destdir="docs/javadoc"
|
|
|
|
footer="
|
|
|
|
<script type="text/javascript">;
|
|
|
|
var _gaq = _gaq || [];
|
|
|
|
_gaq.push(['_setAccount', 'UA-788492-5']);
|
|
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
|
|
})();
|
|
|
|
</script>">
|
2007-12-10 10:08:36 -08:00
|
|
|
<sourcepath>
|
2008-02-14 13:06:57 -08:00
|
|
|
<pathelement location="android/src"/>
|
2009-08-13 04:11:48 -07:00
|
|
|
<pathelement location="android/gen"/>
|
2007-12-10 10:08:36 -08:00
|
|
|
<pathelement location="core/src"/>
|
|
|
|
<pathelement location="javase/src"/>
|
2008-06-24 12:57:41 -07:00
|
|
|
<pathelement location="zxingorg/src"/>
|
2007-12-10 10:08:36 -08:00
|
|
|
</sourcepath>
|
2008-02-05 13:56:03 -08:00
|
|
|
<classpath>
|
2012-03-25 22:32:28 -07:00
|
|
|
<pathelement location="${android-home}/platforms/android-15/android.jar"/>
|
2008-07-10 13:25:42 -07:00
|
|
|
<pathelement location="${tomcat-home}/lib/servlet-api.jar"/>
|
|
|
|
<fileset dir="zxingorg/web/WEB-INF/lib">
|
|
|
|
<include name="*.jar"/>
|
|
|
|
</fileset>
|
2008-02-05 13:56:03 -08:00
|
|
|
</classpath>
|
2007-12-10 10:08:36 -08:00
|
|
|
</javadoc>
|
|
|
|
</target>
|
|
|
|
|
2007-11-14 07:27:06 -08:00
|
|
|
</project>
|