From 6e59c0ba08d48ead500783370b8c67c8fb2e155e Mon Sep 17 00:00:00 2001
From: "U-BASIS\\dsmyda" <dsmyda@win-dsmyd-2925.basistech.net>
Date: Thu, 13 Aug 2020 17:05:24 -0400
Subject: [PATCH] Cleaned up the Tika build script

---
 Tika/build.xml | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/Tika/build.xml b/Tika/build.xml
index d6128e1dae..27632790ae 100755
--- a/Tika/build.xml
+++ b/Tika/build.xml
@@ -10,15 +10,18 @@
     <property name="modules.dir" value="${basedir}/release/modules/" />
     <property name="ext.dir" value="${modules.dir}/ext" />
 
-    <target name="init" depends="init-ivy,harness.init,pull-ivy"/>
-    <target name="pull-ivy">
+    <target name="-pre-compile">
+        <init-ivy/>
         <ivy:resolve log="quiet"/>
         <ivy:retrieve conf="tika" pattern="${ext.dir}/[artifact]-[revision](-[classifier]).[ext]" />
     </target>
-    <target name="clean" depends="projectized-common.clean">
-        <!--Override clean to delete jars, etc downloaded with Ivy, 
-        or copied in from thirdparty folder.  This way we don't end up with 
-        out-of-date/unneeded stuff in the installer-->
+    
+    <target name="-post-compile">
+         
+    </target>
+    
+    <target name="-post-clean">
+        <!-- Clean out all jars downloaded by Ivy -->
         <delete dir="${basedir}/release/"/>
     </target>
 </project>
-- 
GitLab