Moved com.google.zxing.client.result from core-ext to core, rewrote it for J2ME,...
[zxing.git] / core-ext / build.xml
diff --git a/core-ext/build.xml b/core-ext/build.xml
deleted file mode 100644 (file)
index ef3cd4d..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- Copyright 2007 Google Inc.
-
- 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.
--->
-
-<project name="core-ext" default="build">
-
-  <target name="init">
-    <tstamp/>
-  </target>
-
-  <target name="build" depends="init">
-    <mkdir dir="build"/>
-    <javac srcdir="src"
-           destdir="build"
-           source="1.5"
-           target="1.5"
-           optimize="true"
-           debug="true"
-           deprecation="true">
-      <classpath>
-        <pathelement location="../core/core.jar"/>
-      </classpath>
-    </javac>
-    <jar jarfile="core-ext.jar" basedir="build" level="9"/>
-  </target>
-
-  <target name="clean">
-    <delete dir="build"/>
-    <delete file="core-ext.jar"/>
-  </target>
-
-</project>