You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by sc...@apache.org on 2022/11/29 08:02:15 UTC

svn commit: r1905594 - /manifoldcf/trunk/build.xml

Author: schuch
Date: Tue Nov 29 08:02:15 2022
New Revision: 1905594

URL: http://svn.apache.org/viewvc?rev=1905594&view=rev
Log:
update forbiddenapis to v3.4
allow forbiddenapis check to succeed without having to perform maven clean

Modified:
    manifoldcf/trunk/build.xml

Modified: manifoldcf/trunk/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/build.xml?rev=1905594&r1=1905593&r2=1905594&view=diff
==============================================================================
--- manifoldcf/trunk/build.xml (original)
+++ manifoldcf/trunk/build.xml Tue Nov 29 08:02:15 2022
@@ -3255,7 +3255,7 @@ Use Apache Forrest version forrest-0.9-d
         <mkdir dir="lib"/>
         <antcall target="download-via-maven">
             <param name="project-path" value="de/thetaphi"/>
-            <param name="artifact-version" value="2.2"/>
+            <param name="artifact-version" value="3.4"/>
             <param name="target" value="lib"/>
             <param name="artifact-name" value="forbiddenapis"/>
             <param name="artifact-type" value="jar"/>
@@ -3319,7 +3319,7 @@ Use Apache Forrest version forrest-0.9-d
     </target>
 
     <target name="forbidden-taskdef">
-        <taskdef name="forbiddenapis" classname="de.thetaphi.forbiddenapis.ant.AntTask" classpath="lib/forbiddenapis-2.2.jar"/>
+        <taskdef name="forbiddenapis" classname="de.thetaphi.forbiddenapis.ant.AntTask" classpath="lib/forbiddenapis-3.4.jar"/>
     </target>
     
     <target name="forbidden-checks" depends="forbidden-taskdef,build">
@@ -3351,6 +3351,7 @@ Use Apache Forrest version forrest-0.9-d
             </fileset>
             <fileset dir="connectors">
                 <include name="**/*.class"/>
+                <exclude name="alfresco-webscript/target/alfresco-indexer-webscripts-war-*/**/*.class" />
             </fileset>
         </forbiddenapis>
     </target>