AUTHORS file, build file changes and improvements

git-svn-id: https://zxing.googlecode.com/svn/trunk@474 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2008-06-24 19:57:41 +00:00
parent 8fb592777b
commit a012185b85
2 changed files with 12 additions and 1 deletions

View file

@ -7,6 +7,7 @@ Brian Brown (Google)
Christian Brunschen (Google) Christian Brunschen (Google)
Daniel Switkin (Google) Daniel Switkin (Google)
David Albert (Bug Labs) David Albert (Bug Labs)
John Connolly (Bug Labs)
Matthew Schulkind (Google) Matthew Schulkind (Google)
Sean Owen (Google) Sean Owen (Google)
Vince Francis Vince Francis

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
Copyright 2007 Google Inc. Copyright 2007 ZXing authors
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
@ -21,12 +21,14 @@
<property file="build.properties"/> <property file="build.properties"/>
<target name="build"> <target name="build">
<ant dir="bug" target="build"/>
<ant dir="core" target="build"/> <ant dir="core" target="build"/>
<ant dir="javame" target="build"/> <ant dir="javame" target="build"/>
<ant dir="javase" target="build"/> <ant dir="javase" target="build"/>
<ant dir="android" target="package"/> <ant dir="android" target="package"/>
<ant dir="javame" target="build-basic"/> <ant dir="javame" target="build-basic"/>
<ant dir="rim" target="build"/> <ant dir="rim" target="build"/>
<ant dir="zxingorg" target="build"/>
</target> </target>
<target name="buildwithoutj2me"> <target name="buildwithoutj2me">
@ -35,11 +37,13 @@
</target> </target>
<target name="clean"> <target name="clean">
<ant dir="bug" target="clean"/>
<ant dir="core" target="clean"/> <ant dir="core" target="clean"/>
<ant dir="javame" target="clean"/> <ant dir="javame" target="clean"/>
<ant dir="javase" target="clean"/> <ant dir="javase" target="clean"/>
<ant dir="android" target="clean"/> <ant dir="android" target="clean"/>
<ant dir="rim" target="clean"/> <ant dir="rim" target="clean"/>
<ant dir="zxingorg" target="clean"/>
<delete dir="docs/javadoc"/> <delete dir="docs/javadoc"/>
</target> </target>
@ -51,13 +55,17 @@
<zip file="ZXing-${version}.zip"> <zip file="ZXing-${version}.zip">
<zipfileset dir="." prefix="zxing-${version}"> <zipfileset dir="." prefix="zxing-${version}">
<exclude name="**/.*"/> <!-- exclude hidden files --> <exclude name="**/.*"/> <!-- exclude hidden files -->
<include name="AUTHORS"/>
<include name="COPYING"/> <include name="COPYING"/>
<include name="README"/> <include name="README"/>
<include name="CHANGES"/> <include name="CHANGES"/>
<include name="build.xml"/> <include name="build.xml"/>
<include name="build.properties"/> <include name="build.properties"/>
<include name="android/**"/> <include name="android/**"/>
<include name="bug/**"/>
<exclude name="bug/lib/com.buglabs*"/> <!-- Cannot distributed GPLed libraries -->
<include name="core/**"/> <include name="core/**"/>
<include name="cpp/**"/>
<include name="javame/**"/> <include name="javame/**"/>
<include name="javase/**"/> <include name="javase/**"/>
<include name="rim/build.xml"/> <include name="rim/build.xml"/>
@ -77,10 +85,12 @@
footer="&lt;script type=&quot;text/javascript&quot;&gt; var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;); document.write(unescape(&quot;%3Cscript src='&quot; + gaJsHost + &quot;google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E&quot;)); &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; var pageTracker = _gat._getTracker(&quot;UA-788492-5&quot;); pageTracker._initData(); pageTracker._trackPageview(); &lt;/script&gt;"> footer="&lt;script type=&quot;text/javascript&quot;&gt; var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;); document.write(unescape(&quot;%3Cscript src='&quot; + gaJsHost + &quot;google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E&quot;)); &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; var pageTracker = _gat._getTracker(&quot;UA-788492-5&quot;); pageTracker._initData(); pageTracker._trackPageview(); &lt;/script&gt;">
<sourcepath> <sourcepath>
<pathelement location="android/src"/> <pathelement location="android/src"/>
<pathelement location="bug/src"/>
<pathelement location="core/src"/> <pathelement location="core/src"/>
<pathelement location="javame/src"/> <pathelement location="javame/src"/>
<pathelement location="javase/src"/> <pathelement location="javase/src"/>
<pathelement location="rim/src"/> <pathelement location="rim/src"/>
<pathelement location="zxingorg/src"/>
</sourcepath> </sourcepath>
<classpath> <classpath>
<pathelement location="${WTK-home}/lib/cldcapi11.jar"/> <pathelement location="${WTK-home}/lib/cldcapi11.jar"/>