diff options
author | Martin Stockhammer <martin_s@apache.org> | 2017-06-10 13:30:04 +0200 |
---|---|---|
committer | Martin Stockhammer <martin_s@apache.org> | 2017-06-10 21:07:39 +0200 |
commit | abab994f71a2654e2e4acf577d3c4a356a7c6817 (patch) | |
tree | fd1e9e3af18538894b25b4d41dac06164579bf44 /archiva-modules/archiva-web/archiva-webapp-test/pom.xml | |
parent | edb7bd346b06f1513cbaa1e637c630e4e90ea0df (diff) | |
download | archiva-abab994f71a2654e2e4acf577d3c4a356a7c6817.tar.gz archiva-abab994f71a2654e2e4acf577d3c4a356a7c6817.zip |
Fixing issues on ciserver
Diffstat (limited to 'archiva-modules/archiva-web/archiva-webapp-test/pom.xml')
-rw-r--r-- | archiva-modules/archiva-web/archiva-webapp-test/pom.xml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/archiva-modules/archiva-web/archiva-webapp-test/pom.xml b/archiva-modules/archiva-web/archiva-webapp-test/pom.xml index 40eb946be..868f2f506 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> |