Various improvements to handling and detection of URLs in codes
[zxing.git] / build.xml
index 7779c6f..b64b8b2 100644 (file)
--- a/build.xml
+++ b/build.xml
     <ant dir="core-ext" target="build"/>
     <ant dir="javase" target="build"/>
   </target>
+       
+       <target name="buildwithoutj2me">
+         <ant dir="core" target="build"/>
+         <ant dir="core-ext" target="build"/>
+         <ant dir="javase" target="build"/>
+       </target>
 
   <target name="clean">
     <ant dir="core" target="clean"/>
         <include name="javame/**"/>
         <include name="core-ext/**"/>
         <include name="javase/**"/>
+        <include name="docs/**"/>
+        <exclude name="*.iml"/>
       </zipfileset>
     </zip>
   </target>
 
+  <target name="javadoc">
+    <mkdir dir="docs/javadoc"/>
+    <javadoc destdir="docs/javadoc" footer="&lt;script src=&quot;http://www.google-analytics.com/urchin.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;script type=&quot;text/javascript&quot;&gt;_uacct = &quot;UA-788492-4&quot;; urchinTracker();&lt;/script&gt;">
+      <sourcepath>
+        <pathelement location="core/src"/>
+        <pathelement location="core-ext/src"/>
+        <pathelement location="javame/src"/>
+        <pathelement location="javase/src"/>
+      </sourcepath>
+    </javadoc>
+  </target>
+
 </project>