2011-12-28 18:15:19 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
~ Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
~ or more contributor license agreements. See the NOTICE file
|
|
|
|
~ distributed with this work for additional information
|
|
|
|
~ regarding copyright ownership. The ASF licenses this file
|
|
|
|
~ to you under the Apache License, Version 2.0 (the
|
|
|
|
~ "License"); you may not use this file except in compliance
|
|
|
|
~ with the License. You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing,
|
|
|
|
~ software distributed under the License is distributed on an
|
|
|
|
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
~ KIND, either express or implied. See the License for the
|
|
|
|
~ specific language governing permissions and limitations
|
|
|
|
~ under the License.
|
|
|
|
-->
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-web</artifactId>
|
|
|
|
<version>1.4-M3-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<artifactId>archiva-webapp-test-js</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Archiva Web :: Javascript Application Tests</name>
|
|
|
|
|
2012-01-25 18:22:16 -05:00
|
|
|
<properties>
|
2012-05-04 09:09:07 -04:00
|
|
|
<webappDirectory>${project.build.directory}/tomcat7x/webapps/archiva</webappDirectory>
|
2012-05-04 09:09:55 -04:00
|
|
|
<container.test.port>0</container.test.port>
|
|
|
|
<tomcat.propertiesPortFilePath>${project.build.directory}/tomcat-port.properties</tomcat.propertiesPortFilePath>
|
2012-01-25 18:22:16 -05:00
|
|
|
</properties>
|
|
|
|
|
2011-12-28 18:15:19 -05:00
|
|
|
<dependencies>
|
2012-03-02 08:14:58 -05:00
|
|
|
|
2011-12-28 18:15:19 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-webapp-js</artifactId>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-slf4j-logging</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>plexus-component-api</artifactId>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium.client-drivers</groupId>
|
|
|
|
<artifactId>selenium-java-client-driver</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Dependency for MavenConnectionTest -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>jdom</groupId>
|
|
|
|
<artifactId>jdom</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jaxen</groupId>
|
|
|
|
<artifactId>jaxen</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Dependencies below are provided by the appserver -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
<artifactId>activation</artifactId>
|
|
|
|
</dependency>
|
2012-01-25 18:22:16 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
</dependency>
|
2012-06-29 02:58:20 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.easytesting</groupId>
|
2012-07-03 19:11:27 -04:00
|
|
|
<artifactId>fest-assert-core</artifactId>
|
2012-06-29 02:58:20 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2012-09-21 19:50:33 -04:00
|
|
|
<groupId>org.apache.logging.log4j.adapters</groupId>
|
2012-09-09 11:37:27 -04:00
|
|
|
<artifactId>log4j-jcl</artifactId>
|
2012-06-29 02:58:20 -04:00
|
|
|
</dependency>
|
|
|
|
|
2012-09-10 03:13:57 -04:00
|
|
|
<dependency>
|
2012-09-21 19:50:33 -04:00
|
|
|
<groupId>org.apache.logging.log4j.adapters</groupId>
|
2012-09-10 03:13:57 -04:00
|
|
|
<artifactId>slf4j-impl</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2012-06-29 02:58:20 -04:00
|
|
|
<dependency>
|
2012-09-21 19:50:33 -04:00
|
|
|
<groupId>org.apache.logging.log4j.adapters</groupId>
|
2012-09-09 11:37:27 -04:00
|
|
|
<artifactId>log4j12-api</artifactId>
|
2012-06-29 02:58:20 -04:00
|
|
|
</dependency>
|
|
|
|
|
2011-12-28 18:15:19 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>**/*</include>
|
|
|
|
</includes>
|
|
|
|
</testResource>
|
|
|
|
</testResources>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>selenium-maven-plugin</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-server</artifactId>
|
|
|
|
<version>${selenium-server.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-remote-driver</artifactId>
|
|
|
|
<version>${selenium-server.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-api</artifactId>
|
|
|
|
<version>${selenium-server.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>src/test/resources/appserver-base/**</exclude>
|
|
|
|
<exclude>src/test/resources/repository/**</exclude>
|
|
|
|
<exclude>src/test/resources/local-repo/**</exclude>
|
|
|
|
<exclude>src/test/resources/projects/**</exclude>
|
|
|
|
<exclude>src/test/resources/snapshots/**</exclude>
|
|
|
|
<exclude>src/test/tomcat*/conf/catalina.policy</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>testResources</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
|
|
|
<verbose>true</verbose>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>testCompile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<redirectTestOutputToFile>false</redirectTestOutputToFile>
|
|
|
|
<runOrder>alphabetical</runOrder>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>integration-tests</id>
|
|
|
|
<phase>integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>test</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2012-01-17 03:21:01 -05:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<browser>${selenium.browser}</browser>
|
2012-06-29 02:58:20 -04:00
|
|
|
<selenium.browser>${selenium.browser}</selenium.browser>
|
2012-01-17 03:21:01 -05:00
|
|
|
<baseUrl>${baseUrl}</baseUrl>
|
|
|
|
<maxWaitTimeInMs>${maxWaitTimeInMs}</maxWaitTimeInMs>
|
2012-02-29 17:06:12 -05:00
|
|
|
<seleniumHost>${seleniumHost}</seleniumHost>
|
|
|
|
<seleniumPort>${seleniumPort}</seleniumPort>
|
2012-05-04 09:09:55 -04:00
|
|
|
<tomcat.propertiesPortFilePath>${tomcat.propertiesPortFilePath}</tomcat.propertiesPortFilePath>
|
2012-01-17 03:21:01 -05:00
|
|
|
</systemPropertyVariables>
|
2011-12-28 18:15:19 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>create-container</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>!container</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unzip-archiva-webapp</id>
|
2012-01-09 16:46:39 -05:00
|
|
|
<phase>compile</phase>
|
2011-12-28 18:15:19 -05:00
|
|
|
<goals>
|
|
|
|
<goal>unpack</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>archiva-webapp-js</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
2012-01-25 18:22:16 -05:00
|
|
|
<outputDirectory>${webappDirectory}</outputDirectory>
|
2011-12-28 18:15:19 -05:00
|
|
|
<overWriteSnapshots>true</overWriteSnapshots>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2012-02-03 09:02:34 -05:00
|
|
|
<phase>process-classes</phase>
|
2011-12-28 18:15:19 -05:00
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
2012-03-02 08:14:20 -05:00
|
|
|
<copy overwrite="true" todir="${webappDirectory}/WEB-INF/classes">
|
2012-02-03 09:02:34 -05:00
|
|
|
<fileset dir="src/test/resources/logging"/>
|
|
|
|
</copy>
|
2011-12-28 18:15:19 -05:00
|
|
|
<copy todir="${project.build.directory}/appserver-base">
|
|
|
|
<fileset dir="src/test/resources/appserver-base"/>
|
|
|
|
</copy>
|
|
|
|
<copy todir="${project.build.directory}/repository">
|
|
|
|
<fileset dir="src/test/resources/repository"/>
|
|
|
|
</copy>
|
|
|
|
<copy todir="${project.build.directory}/index">
|
|
|
|
<fileset dir="src/test/resources/index"/>
|
|
|
|
</copy>
|
|
|
|
<copy todir="${project.build.directory}/snapshots">
|
|
|
|
<fileset dir="src/test/resources/snapshots"/>
|
|
|
|
</copy>
|
|
|
|
<copy todir="${project.build.directory}/projects">
|
|
|
|
<fileset dir="src/test/resources/projects"/>
|
|
|
|
</copy>
|
|
|
|
<copy todir="${project.build.directory}/local-repo">
|
|
|
|
<fileset dir="src/test/resources/local-repo"/>
|
|
|
|
</copy>
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2012-01-09 16:46:39 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.tomcat.maven</groupId>
|
2012-05-04 09:09:07 -04:00
|
|
|
<artifactId>tomcat7-maven-plugin</artifactId>
|
2012-01-09 16:46:39 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
|
|
|
<version>${derbyVersion}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
<version>${javaxMailVersion}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>tomcat-run</id>
|
|
|
|
<goals>
|
|
|
|
<goal>run-war-only</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>pre-integration-test</phase>
|
|
|
|
<configuration>
|
|
|
|
<path>/archiva</path>
|
|
|
|
<port>${container.test.port}</port>
|
|
|
|
<uriEncoding>UTF-8</uriEncoding>
|
2012-01-25 18:22:16 -05:00
|
|
|
<warDirectory>${webappDirectory}</warDirectory>
|
2012-01-09 16:46:39 -05:00
|
|
|
<fork>true</fork>
|
|
|
|
<ignorePackaging>true</ignorePackaging>
|
|
|
|
<systemProperties>
|
|
|
|
<appserver.base>${project.build.directory}/appserver-base</appserver.base>
|
|
|
|
<appserver.home>${project.build.directory}/appserver-base</appserver.home>
|
|
|
|
<derby.system.home>${project.build.directory}</derby.system.home>
|
2012-01-23 17:32:45 -05:00
|
|
|
<archiva.devMode>true</archiva.devMode>
|
2012-01-09 16:46:39 -05:00
|
|
|
</systemProperties>
|
2012-05-04 09:09:40 -04:00
|
|
|
<contextFile>${project.build.testOutputDirectory}/archiva.xml</contextFile>
|
2012-05-04 09:09:55 -04:00
|
|
|
<propertiesPortFilePath>${tomcat.propertiesPortFilePath}</propertiesPortFilePath>
|
2012-01-09 16:46:39 -05:00
|
|
|
<useNaming>true</useNaming>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>tomcat-shutdown</id>
|
|
|
|
<goals>
|
|
|
|
<goal>shutdown</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>post-integration-test</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2011-12-28 18:15:19 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>existing-container</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>!baseUrl</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2011-12-29 08:53:01 -05:00
|
|
|
<baseUrl>http://localhost:${container.test.port}/archiva/index.html?request_lang=en</baseUrl>
|
2011-12-28 18:15:19 -05:00
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>start-selenium</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>!seleniumHost</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<seleniumHost>localhost</seleniumHost>
|
|
|
|
<seleniumPort>4444</seleniumPort>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>selenium-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>pre-integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>start-server</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<background>true</background>
|
|
|
|
<port>${seleniumPort}</port>
|
|
|
|
<logOutput>true</logOutput>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>firefox</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>!browser</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<selenium.browser>*firefox</selenium.browser>
|
|
|
|
<excluded.groups/>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>chrome</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>browser</name>
|
|
|
|
<value>chrome</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<selenium.browser>*googlechrome</selenium.browser>
|
|
|
|
<excluded.groups>requiresUpload</excluded.groups>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>iexplore</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>browser</name>
|
|
|
|
<value>iexplore</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<selenium.browser>*iexplore</selenium.browser>
|
|
|
|
<excluded.groups>requiresUpload</excluded.groups>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>safari</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>browser</name>
|
|
|
|
<value>safari</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<selenium.browser>*safari</selenium.browser>
|
|
|
|
<excluded.groups>requiresUpload</excluded.groups>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>otherbrowser</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>browser</name>
|
|
|
|
<value>other</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<selenium.browser>*custom ${browserPath}</selenium.browser>
|
|
|
|
<excluded.groups>requiresUpload</excluded.groups>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>headless</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>selenium-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>xvfb</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>xvfb</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2012-01-09 16:47:03 -05:00
|
|
|
|
2011-12-28 18:15:19 -05:00
|
|
|
<profile>
|
|
|
|
<id>ci-server</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>cleanup-files</id>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
|
|
|
<delete file="${user.home}/.m2/archiva.xml" quiet="true"/>
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
</project>
|