]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Java/Source/FrameworkTasks/build.xml
Retiring the ANT/JAVA build and removing the older EDK II packages that required...
[mirror_edk2.git] / Tools / Java / Source / FrameworkTasks / build.xml
diff --git a/Tools/Java/Source/FrameworkTasks/build.xml b/Tools/Java/Source/FrameworkTasks/build.xml
deleted file mode 100644 (file)
index c3c86c9..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-<?xml version="1.0"?>\r
-<!--\r
-Copyright (c) 2006, Intel Corporation\r
-All rights reserved. This program and the accompanying materials\r
-are licensed and made available under the terms and conditions of the BSD License\r
-which accompanies this distribution.  The full text of the license may be found at\r
-http://opensource.org/licenses/bsd-license.php\r
-\r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
--->\r
-<project name="FrameworkTasks" default="FrameworkTasks">\r
-  <taskdef resource="net/sf/antcontrib/antlib.xml"/>\r
-  <property environment="env"/>\r
-  <property name="WORKSPACE" value="${env.WORKSPACE}"/>\r
-  <property name="buildDir" value="build"/>\r
-  <property name="installLocation" value="${WORKSPACE}/Tools/Jars"/>\r
-  <target name="FrameworkTasks" depends="install"/>\r
-  <target name="source">\r
-    <mkdir dir="${buildDir}"/>\r
-    <javac srcdir="." destdir="${buildDir}">\r
-      <classpath>\r
-        <fileset dir="${WORKSPACE}/Tools/Jars">\r
-          <include name="*.jar"/>\r
-        </fileset>\r
-      </classpath>\r
-      <compilerarg value="-Xlint"/>\r
-    </javac>\r
-  </target>\r
-  <target name="clean">\r
-    <delete includeemptydirs="true" failonerror="false" quiet="true">\r
-      <fileset dir="${WORKSPACE}/Tools/Java/Source/FrameworkTasks" includes="${buildDir}"/>\r
-    </delete>\r
-  </target>\r
-  <target name="cleanall" depends="clean">\r
-    <echo message="Removing Class Files and the Java Archive: frameworktasks.jar"/>\r
-    <delete file="${installLocation}/frameworktasks.jar"/>\r
-    <if>\r
-      <available file="${installLocation}/frameworktasks.jar"/>\r
-      <then>\r
-        <echo message="You must manually remove the file: ${installLocation}/frameworktasks.jar"/>\r
-        <echo message="Java has already loaded the file, and cannot remove it within ANT!"/>\r
-      </then>\r
-    </if>\r
-  </target>\r
-  <target name="install" depends="source">\r
-    <copy file="frameworktasks.tasks" toDir="${buildDir}"/>\r
-    <jar destfile="${installLocation}/frameworktasks.jar"\r
-      basedir="${buildDir}"\r
-      includes="**"\r
-    />\r
-  </target>\r
-</project>\r