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
|
|
|
|
2012-09-27 04:43:47 -07:00
|
|
|
<target name="release">
|
|
|
|
<zip file="ZXing-${version}.zip" level="9">
|
|
|
|
<zipfileset dir="." prefix="zxing-${version}" followsymlinks="false">
|
|
|
|
<exclude name="**/.*"/>
|
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"/>
|
2010-03-04 12:31:06 -08:00
|
|
|
<include name="actionscript/**"/>
|
2012-09-27 04:43:47 -07:00
|
|
|
<exclude name="**/local.properties"/>
|
2008-02-14 13:06:57 -08:00
|
|
|
<include name="android/**"/>
|
2012-09-27 04:43:47 -07:00
|
|
|
<exclude name="android/bin/**"/>
|
2013-04-21 04:30:54 -07:00
|
|
|
<exclude name="android/gen/**"/>
|
2012-09-27 04:43:47 -07:00
|
|
|
<exclude name="android/libs/**"/>
|
2009-11-30 06:35:22 -08:00
|
|
|
<include name="android-integration/**"/>
|
2012-09-27 04:43:47 -07:00
|
|
|
<exclude name="android-integration/build/**"/>
|
|
|
|
<exclude name="android-integration/target/**"/>
|
2009-11-30 06:35:22 -08:00
|
|
|
<include name="androidtest/**"/>
|
2012-09-27 04:43:47 -07:00
|
|
|
<exclude name="androidtest/bin/**"/>
|
2013-04-21 04:30:54 -07:00
|
|
|
<exclude name="androidtest/gen/**"/>
|
2012-09-27 04:43:47 -07:00
|
|
|
<exclude name="androidtest/libs/**"/>
|
2007-11-28 09:11:57 -08:00
|
|
|
<include name="core/**"/>
|
2012-09-27 04:43:47 -07:00
|
|
|
<exclude name="core/build/**"/>
|
|
|
|
<exclude name="core/target/**"/>
|
|
|
|
<exclude name="core/test/data/**"/>
|
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-09-27 04:43:47 -07:00
|
|
|
<exclude name="javase/build/**"/>
|
|
|
|
<exclude name="javase/target/**"/>
|
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/**"/>
|
2013-04-21 04:30:54 -07:00
|
|
|
<exclude name="zxingorg/build/**"/>
|
|
|
|
<exclude name="zxingorg/target/**"/>
|
2012-09-27 04:43:47 -07:00
|
|
|
</zipfileset>
|
|
|
|
</zip>
|
|
|
|
<!-- Separate out test data files now to make download more manageable -->
|
|
|
|
<zip file="ZXing-${version}-testdata.zip" level="9">
|
|
|
|
<zipfileset dir="." prefix="zxing-${version}" followsymlinks="false">
|
|
|
|
<exclude name="**/.*"/>
|
|
|
|
<exclude name="**/.svn"/>
|
|
|
|
<include name="core/test/data/**"/>
|
2007-11-28 09:11:57 -08:00
|
|
|
</zipfileset>
|
2007-11-19 10:33:02 -08:00
|
|
|
</zip>
|
|
|
|
</target>
|
|
|
|
|
2007-11-14 07:27:06 -08:00
|
|
|
</project>
|