You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ma...@apache.org on 2017/06/10 12:53:12 UTC

archiva git commit: Fixing config delete issue

Repository: archiva
Updated Branches:
  refs/heads/citest f470fdbe7 -> f25573296


Fixing config delete issue


Project: http://git-wip-us.apache.org/repos/asf/archiva/repo
Commit: http://git-wip-us.apache.org/repos/asf/archiva/commit/f2557329
Tree: http://git-wip-us.apache.org/repos/asf/archiva/tree/f2557329
Diff: http://git-wip-us.apache.org/repos/asf/archiva/diff/f2557329

Branch: refs/heads/citest
Commit: f255732969ddb3318896ce21f8c6527da3cc2ad2
Parents: f470fdb
Author: Martin Stockhammer <ma...@apache.org>
Authored: Sat Jun 10 14:52:52 2017 +0200
Committer: Martin Stockhammer <ma...@apache.org>
Committed: Sat Jun 10 14:52:52 2017 +0200

----------------------------------------------------------------------
 archiva-modules/archiva-web/archiva-webapp-test/pom.xml | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/archiva/blob/f2557329/archiva-modules/archiva-web/archiva-webapp-test/pom.xml
----------------------------------------------------------------------
diff --git a/archiva-modules/archiva-web/archiva-webapp-test/pom.xml b/archiva-modules/archiva-web/archiva-webapp-test/pom.xml
index 40eb946..868f2f5 100644
--- a/archiva-modules/archiva-web/archiva-webapp-test/pom.xml
+++ b/archiva-modules/archiva-web/archiva-webapp-test/pom.xml
@@ -819,13 +819,15 @@
             <executions>
               <execution>
                 <id>cleanup-files</id>
+                <phase>clean</phase>
                 <goals>
                   <goal>run</goal>
                 </goals>
                 <configuration>
-                  <tasks>
-                    <delete file="${user.home}/.m2/archiva.xml" quiet="true"/>
-                  </tasks>
+                  <failOnError>false</failOnError>
+                  <target>
+                    <delete file="${user.home}/.m2/archiva.xml" />
+                  </target>
                 </configuration>
               </execution>
             </executions>