2008-07-12 01:12:59 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-03-25 06:26:23 -04:00
|
|
|
<!--
|
|
|
|
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.
|
|
|
|
-->
|
2023-06-02 05:57:19 -04:00
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
2006-10-26 01:00:09 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2008-09-17 18:08:01 -04:00
|
|
|
|
2007-01-03 08:29:04 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven.its</groupId>
|
2011-07-08 16:37:00 -04:00
|
|
|
<artifactId>core-its</artifactId>
|
2007-09-23 21:31:02 -04:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
2007-01-03 08:29:04 -05:00
|
|
|
</parent>
|
2008-09-17 18:08:01 -04:00
|
|
|
|
2008-09-23 11:48:07 -04:00
|
|
|
<artifactId>core-it-suite</artifactId>
|
2008-09-17 18:08:01 -04:00
|
|
|
|
2019-08-23 17:42:19 -04:00
|
|
|
<name>Maven Core ITs suite</name>
|
2011-07-11 17:42:02 -04:00
|
|
|
<description>The effective Maven Integration Tests suite.</description>
|
2008-09-17 18:08:01 -04:00
|
|
|
|
2017-03-25 06:26:23 -04:00
|
|
|
<!--
|
|
|
|
By default, the project just packages the tests in an artifact. To actually run them, activate the profile "run-its":
|
2020-11-11 13:01:39 -05:00
|
|
|
|
2017-03-25 06:26:23 -04:00
|
|
|
mvn clean test -Prun-its
|
2020-11-11 13:01:39 -05:00
|
|
|
|
2017-03-25 06:26:23 -04:00
|
|
|
This will subject the Maven version running the build to the integration tests. If you would like to test a different
|
|
|
|
Maven distribution, you can use the system property "mavenHome" to specify the path of the Maven distribution to test:
|
2020-11-11 13:01:39 -05:00
|
|
|
|
2017-03-25 06:26:23 -04:00
|
|
|
mvn clean test -Prun-its -DmavenHome=<maven-under-test>
|
2020-11-11 13:01:39 -05:00
|
|
|
|
2017-03-25 06:26:23 -04:00
|
|
|
Alternatively, you can just specify the version of a previously installed/deployed Maven distribution which will be
|
|
|
|
downloaded, unpacked and tested:
|
|
|
|
|
|
|
|
mvn clean test -Prun-its -DmavenVersion=2.2.1
|
2020-11-11 13:01:39 -05:00
|
|
|
|
2017-03-25 06:26:23 -04:00
|
|
|
It's also possible to point the ITs at an already downloaded Maven distribution:
|
2020-11-11 13:01:39 -05:00
|
|
|
|
2017-03-25 06:26:23 -04:00
|
|
|
mvn clean test -Prun-its -DmavenDistro=<path-to-bin-archive>
|
2020-11-11 13:01:39 -05:00
|
|
|
|
2017-03-25 06:26:23 -04:00
|
|
|
To run the ITs using embedded Maven 3.x, additionally activate the profile "embedded".
|
2020-11-11 13:01:39 -05:00
|
|
|
|
2017-03-25 06:26:23 -04:00
|
|
|
ITs that don't require to fork Maven can also be run from the IDE using the Maven projects from the workspace if the
|
|
|
|
Maven dependencies are added to the test class path.
|
2020-05-22 16:33:01 -04:00
|
|
|
|
2017-04-01 16:10:35 -04:00
|
|
|
If you're behind a proxy, use the system properties proxy.host, proxy.port, proxy.user, proxy.pass and
|
|
|
|
proxy.nonProxyHosts to specify the required proxy setup for the ITs. Alternatively, set the system property
|
|
|
|
maven.it.central to a URL of a local repository manager (anonymous authentication only) that proxies the
|
|
|
|
required artifacts.
|
2017-03-25 06:26:23 -04:00
|
|
|
-->
|
2009-10-09 19:24:55 -04:00
|
|
|
|
2008-12-11 14:24:23 -05:00
|
|
|
<properties>
|
2015-09-19 11:46:24 -04:00
|
|
|
<surefireMemory>-Xmx384m</surefireMemory>
|
2008-12-11 14:24:23 -05:00
|
|
|
<!-- The original Maven distribution to test. -->
|
|
|
|
<mavenHome>${maven.home}</mavenHome>
|
2020-11-11 13:01:39 -05:00
|
|
|
<!-- The (possibly instrumented copy of the) Maven distribution we actually
|
2015-04-02 00:18:55 -04:00
|
|
|
use for the tests. -->
|
2008-12-11 14:24:23 -05:00
|
|
|
<preparedMavenHome>${mavenHome}</preparedMavenHome>
|
2010-08-02 20:36:19 -04:00
|
|
|
<!-- default properties used to filter the global settings -->
|
2022-06-16 20:50:33 -04:00
|
|
|
<maven.it.central>https://repo.maven.apache.org/maven2</maven.it.central>
|
2010-08-02 20:36:19 -04:00
|
|
|
<proxy.active>false</proxy.active>
|
|
|
|
<proxy.host>localhost</proxy.host>
|
|
|
|
<proxy.port>80</proxy.port>
|
|
|
|
<proxy.type>none</proxy.type>
|
2023-06-02 05:57:19 -04:00
|
|
|
<proxy.user />
|
|
|
|
<proxy.pass />
|
2017-04-01 16:10:35 -04:00
|
|
|
<proxy.nonProxyHosts>localhost</proxy.nonProxyHosts>
|
2012-11-11 00:34:57 -05:00
|
|
|
<slf4jVersion>1.6.1</slf4jVersion>
|
2023-01-12 05:20:33 -05:00
|
|
|
<jetty9Version>9.4.50.v20221201</jetty9Version>
|
2022-07-01 14:54:18 -04:00
|
|
|
|
|
|
|
<stubPluginVersion>0.1-stub-SNAPSHOT</stubPluginVersion>
|
2008-12-11 14:24:23 -05:00
|
|
|
</properties>
|
|
|
|
|
2008-09-17 18:08:01 -04:00
|
|
|
<dependencies>
|
2008-09-21 12:00:19 -04:00
|
|
|
<dependency>
|
2022-09-30 16:23:04 -04:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2008-09-21 12:00:19 -04:00
|
|
|
<!-- NOTE: Use compile scope for transitivity. -->
|
2015-04-02 00:18:55 -04:00
|
|
|
</dependency>
|
2008-09-21 12:00:19 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
2020-11-11 13:01:39 -05:00
|
|
|
<version>3.3.0</version>
|
2008-09-21 12:00:19 -04:00
|
|
|
<!-- NOTE: Use compile scope for transitivity. -->
|
|
|
|
</dependency>
|
2008-09-17 18:08:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
|
|
<artifactId>maven-verifier</artifactId>
|
2020-11-11 13:01:39 -05:00
|
|
|
<!-- TODO: not transitive in tests artifact, so must be left in main
|
2015-04-02 00:18:55 -04:00
|
|
|
scope <scope>test</scope> -->
|
2008-09-17 18:08:01 -04:00
|
|
|
</dependency>
|
2012-11-25 00:35:50 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
|
|
<artifactId>maven-shared-utils</artifactId>
|
2015-10-18 11:15:22 -04:00
|
|
|
<version>0.9</version>
|
2015-04-02 00:18:55 -04:00
|
|
|
</dependency>
|
2023-01-12 05:20:33 -05:00
|
|
|
|
|
|
|
<!-- Jetty (as test HTTP server) -->
|
2015-04-02 00:18:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2023-01-12 05:20:33 -05:00
|
|
|
<artifactId>jetty-server</artifactId>
|
2015-04-02 00:18:55 -04:00
|
|
|
<version>${jetty9Version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2023-01-12 05:20:33 -05:00
|
|
|
<artifactId>jetty-security</artifactId>
|
2015-04-02 00:18:55 -04:00
|
|
|
<version>${jetty9Version}</version>
|
|
|
|
</dependency>
|
2023-01-12 05:20:33 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
<version>${jetty9Version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2015-04-02 00:18:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>16.0</version>
|
|
|
|
</dependency>
|
2020-11-11 13:01:39 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-repository-metadata</artifactId>
|
2023-01-11 07:35:56 -05:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- project dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its</groupId>
|
|
|
|
<artifactId>maven-it-plugin-bootstrap</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its</groupId>
|
|
|
|
<artifactId>core-it-component</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its</groupId>
|
|
|
|
<artifactId>core-it-toolchain</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its</groupId>
|
|
|
|
<artifactId>core-it-wagon</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its</groupId>
|
|
|
|
<artifactId>maven-it-helper</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its</groupId>
|
|
|
|
<artifactId>core-it-extension</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its</groupId>
|
|
|
|
<artifactId>core-it-javaagent</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-ear-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-ejb-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-rar-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>0.1-stub-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-active-collection</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-ant-based</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-artifact</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-class-loader</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-configuration</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-context-passing</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-dependency-collection</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-dependency-resolution</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-expression</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-error</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-extension-consumer</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-extension-provider</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-fork</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-invalid-descriptor</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-log-file</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-model-interpolation</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-no-default-comp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-no-project</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-online</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-optional-mojos</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-packaging</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-plugin-dependency</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-project</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-project-interpolation</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-setter</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-singleton-component</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-site</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-toolchain</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-touch</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-uses-properties</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-uses-wagon</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-all</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-plexus-utils-11</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-plexus-utils-new</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-plexus-component-api</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-log4j</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-extension1</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-extension2</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-plexus-lifecycle</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>maven-it-plugin-settings</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>mng-5805-pkg-type-mojo-configuration-extension</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>mng-5805-pkg-type-mojo-configuration-extension2</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>mng-5805-pkg-type-mojo-configuration-plugin</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>mng-5805-pkg-type-mojo-configuration-plugin-dep</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>mng-5958-pkg-type-extension</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
|
|
<artifactId>mng-6759-resolves-project-dependencies-plugin</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2020-11-11 13:01:39 -05:00
|
|
|
</dependency>
|
2008-09-17 18:08:01 -04:00
|
|
|
</dependencies>
|
|
|
|
|
2006-10-26 01:00:09 -04:00
|
|
|
<build>
|
2010-08-02 20:36:19 -04:00
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
</testResource>
|
|
|
|
<testResource>
|
|
|
|
<filtering>true</filtering>
|
2023-06-02 05:57:19 -04:00
|
|
|
<directory>src/test/resources-filtered</directory>
|
2010-08-02 20:36:19 -04:00
|
|
|
</testResource>
|
|
|
|
</testResources>
|
2006-10-26 01:00:09 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<includes>
|
2022-09-30 16:23:04 -04:00
|
|
|
<include>**/MavenIT*.java</include>
|
2006-10-26 01:00:09 -04:00
|
|
|
</includes>
|
2023-02-24 14:42:40 -05:00
|
|
|
<!-- test annotated by @Tag("disabled") will be skipped from executions -->
|
|
|
|
<excludedGroups>disabled</excludedGroups>
|
2022-09-30 16:23:04 -04:00
|
|
|
<forkCount>0</forkCount>
|
|
|
|
<reuseForks>true</reuseForks>
|
2007-09-23 21:31:02 -04:00
|
|
|
<skip>true</skip>
|
2023-02-24 01:56:00 -05:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<maven.version>${maven.version}</maven.version>
|
|
|
|
<maven.home>${preparedMavenHome}</maven.home>
|
|
|
|
<maven.it.global-settings.dir>${project.build.testOutputDirectory}</maven.it.global-settings.dir>
|
|
|
|
</systemPropertyVariables>
|
2006-10-26 01:00:09 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2007-09-23 21:31:02 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2006-10-26 01:00:09 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2008-09-17 18:08:01 -04:00
|
|
|
|
2007-09-23 21:31:02 -04:00
|
|
|
<profiles>
|
2014-01-04 14:10:16 -05:00
|
|
|
<profile>
|
2015-04-02 00:18:55 -04:00
|
|
|
<id>parallel</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2022-07-01 14:54:18 -04:00
|
|
|
<parallel>suitesAndClasses</parallel>
|
2015-04-02 00:18:55 -04:00
|
|
|
<threadCount>6</threadCount>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2014-01-04 14:10:16 -05:00
|
|
|
</profile>
|
2007-09-23 21:31:02 -04:00
|
|
|
<profile>
|
|
|
|
<id>run-its</id>
|
2011-09-29 18:06:03 -04:00
|
|
|
<dependencies>
|
|
|
|
<!-- not really used but will force download in the local repo used -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-webdav-jackrabbit</artifactId>
|
2020-11-13 17:29:19 -05:00
|
|
|
<version>3.0.0</version>
|
2011-09-29 18:06:03 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2012-11-10 23:36:28 -05:00
|
|
|
<version>${slf4jVersion}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<version>${slf4jVersion}</version>
|
2011-09-29 18:06:03 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2023-06-02 05:57:19 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>false</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2007-09-23 21:31:02 -04:00
|
|
|
</profile>
|
2009-07-22 17:37:30 -04:00
|
|
|
<profile>
|
|
|
|
<id>maven-repo-local</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>maven.repo.local</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2023-02-24 01:56:00 -05:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<!-- Pass this through to the tests (if set!) to have them
|
|
|
|
pick the right repository -->
|
|
|
|
<maven.repo.local>${maven.repo.local}</maven.repo.local>
|
|
|
|
</systemPropertyVariables>
|
2009-07-22 17:37:30 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2010-12-17 11:06:59 -05:00
|
|
|
<profile>
|
|
|
|
<id>maven-repo-local-layout</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>maven.repo.local.layout</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2023-02-24 01:56:00 -05:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<!-- Pass this through to the tests (if set!) to have them
|
|
|
|
pick the right repository layout -->
|
|
|
|
<maven.repo.local.layout>${maven.repo.local.layout}</maven.repo.local.layout>
|
|
|
|
</systemPropertyVariables>
|
2010-12-17 11:06:59 -05:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2015-09-19 11:46:24 -04:00
|
|
|
<profile>
|
|
|
|
<id>jdk-properties</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>(,1.8)</jdk>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2023-06-02 05:57:19 -04:00
|
|
|
<surefireMemory>-Xmx384m -XX:MaxPermSize=192m</surefireMemory>
|
2015-09-19 11:46:24 -04:00
|
|
|
</properties>
|
2020-11-11 13:01:39 -05:00
|
|
|
</profile>
|
2010-02-14 18:44:20 -05:00
|
|
|
<profile>
|
|
|
|
<id>embedded</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2010-08-03 16:43:23 -04:00
|
|
|
<skip>false</skip>
|
2022-09-30 16:23:04 -04:00
|
|
|
<forkCount>1</forkCount>
|
|
|
|
<reuseForks>true</reuseForks>
|
2015-04-02 00:18:55 -04:00
|
|
|
<argLine>${surefireMemory}
|
|
|
|
-Dcom.sun.management.jmxremote=true</argLine>
|
2020-11-11 13:01:39 -05:00
|
|
|
<!-- NOTE: Maven plugins have access to the system class path
|
2015-04-02 00:18:55 -04:00
|
|
|
so keep it clean -->
|
2010-08-04 17:10:25 -04:00
|
|
|
<useSystemClassLoader>false</useSystemClassLoader>
|
2023-02-24 01:56:00 -05:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<verifier.forkMode>auto</verifier.forkMode>
|
|
|
|
<emma.rt.control>false</emma.rt.control>
|
|
|
|
</systemPropertyVariables>
|
2010-02-14 18:44:20 -05:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2010-07-12 06:48:09 -04:00
|
|
|
<profile>
|
2011-10-09 12:50:22 -04:00
|
|
|
<id>maven-from-repo</id>
|
2010-07-12 06:48:09 -04:00
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>mavenVersion</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<mavenHome>${project.build.directory}/apache-maven</mavenHome>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>false</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>download-maven-distro</id>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
2023-06-02 05:57:19 -04:00
|
|
|
<phase>process-test-resources</phase>
|
2010-07-12 06:48:09 -04:00
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>apache-maven</artifactId>
|
|
|
|
<version>${mavenVersion}</version>
|
|
|
|
<classifier>bin</classifier>
|
|
|
|
<type>zip</type>
|
|
|
|
<destFileName>maven-bin.zip</destFileName>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
<outputDirectory>${project.build.directory}</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpack-maven-distro</id>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
2023-06-02 05:57:19 -04:00
|
|
|
<phase>process-test-resources</phase>
|
2010-07-12 06:48:09 -04:00
|
|
|
<configuration>
|
2020-04-17 16:57:31 -04:00
|
|
|
<target>
|
2015-04-02 00:18:55 -04:00
|
|
|
<delete dir="${mavenHome}" />
|
2023-06-02 05:57:19 -04:00
|
|
|
<unzip dest="${mavenHome}" src="${project.build.directory}/maven-bin.zip">
|
|
|
|
<globmapper from="apache-maven-${mavenVersion}/*" handledirsep="true" to="*" />
|
2010-07-12 06:48:09 -04:00
|
|
|
</unzip>
|
2023-06-02 05:57:19 -04:00
|
|
|
<chmod dir="${mavenHome}/bin" includes="mvn,mvnDebug" perm="ugo+rx" />
|
2020-04-17 16:57:31 -04:00
|
|
|
</target>
|
2010-07-12 06:48:09 -04:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2011-10-09 12:50:22 -04:00
|
|
|
<profile>
|
|
|
|
<id>maven-distro</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>mavenDistro</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<mavenHome>${project.build.directory}/apache-maven</mavenHome>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>false</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpack-maven-distro</id>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
2023-06-02 05:57:19 -04:00
|
|
|
<phase>process-test-resources</phase>
|
2011-10-09 12:50:22 -04:00
|
|
|
<configuration>
|
2020-04-17 16:57:31 -04:00
|
|
|
<target>
|
2015-04-02 00:18:55 -04:00
|
|
|
<delete dir="${mavenHome}" />
|
2023-06-02 05:57:19 -04:00
|
|
|
<unzip dest="${mavenHome}" src="${mavenDistro}">
|
|
|
|
<regexpmapper from="^([^/]+)/(.*)$" handledirsep="true" to="\2" />
|
2011-10-09 12:50:22 -04:00
|
|
|
</unzip>
|
2023-06-02 05:57:19 -04:00
|
|
|
<chmod dir="${mavenHome}/bin" includes="mvn,mvnDebug" perm="ugo+rx" />
|
2020-04-17 16:57:31 -04:00
|
|
|
</target>
|
2011-10-09 12:50:22 -04:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2008-12-11 14:24:23 -05:00
|
|
|
<profile>
|
|
|
|
<id>emma</id>
|
|
|
|
<properties>
|
|
|
|
<preparedMavenHome>${project.build.directory}/distro</preparedMavenHome>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>false</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-maven-distro</id>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
2023-06-02 05:57:19 -04:00
|
|
|
<phase>process-test-classes</phase>
|
2008-12-11 14:24:23 -05:00
|
|
|
<configuration>
|
2020-04-17 16:57:31 -04:00
|
|
|
<target>
|
2015-04-02 00:18:55 -04:00
|
|
|
<delete dir="${preparedMavenHome}" />
|
2023-06-02 05:57:19 -04:00
|
|
|
<copy overwrite="true" todir="${preparedMavenHome}">
|
2015-04-02 00:18:55 -04:00
|
|
|
<fileset dir="${mavenHome}" />
|
2008-12-11 14:24:23 -05:00
|
|
|
</copy>
|
2023-06-02 05:57:19 -04:00
|
|
|
<chmod dir="${preparedMavenHome}/bin" includes="mvn,mvnDebug" perm="ugo+rx" />
|
2020-04-17 16:57:31 -04:00
|
|
|
</target>
|
2008-12-11 14:24:23 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>inject-emma-into-core-realm</id>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
2023-06-02 05:57:19 -04:00
|
|
|
<phase>process-test-classes</phase>
|
2008-12-11 14:24:23 -05:00
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>emma</groupId>
|
|
|
|
<artifactId>emma</artifactId>
|
2009-02-25 14:46:56 -05:00
|
|
|
<version>2.1.5320</version>
|
2008-12-11 14:24:23 -05:00
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
2009-04-12 06:50:26 -04:00
|
|
|
<outputDirectory>${preparedMavenHome}/lib</outputDirectory>
|
2008-12-11 14:24:23 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.maven.plugin</groupId>
|
|
|
|
<artifactId>emma4it-maven-plugin</artifactId>
|
2009-02-25 14:46:56 -05:00
|
|
|
<version>1.2</version>
|
2008-12-11 14:24:23 -05:00
|
|
|
<configuration>
|
2009-01-04 12:45:32 -05:00
|
|
|
<jarSets>
|
|
|
|
<jarSet>
|
2009-04-12 06:50:26 -04:00
|
|
|
<directory>${preparedMavenHome}/lib</directory>
|
2009-01-04 12:45:32 -05:00
|
|
|
<includes>
|
|
|
|
<include>maven*.jar</include>
|
|
|
|
</includes>
|
|
|
|
</jarSet>
|
|
|
|
</jarSets>
|
|
|
|
<includes>
|
|
|
|
<include>org.apache.maven.*</include>
|
|
|
|
</includes>
|
2010-09-01 05:21:05 -04:00
|
|
|
<excludes>
|
|
|
|
<exclude>*.io.xpp3.*</exclude>
|
|
|
|
<exclude>*Exception</exclude>
|
|
|
|
</excludes>
|
2009-01-04 12:45:32 -05:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>instrument</id>
|
|
|
|
<goals>
|
|
|
|
<goal>instrument</goal>
|
|
|
|
</goals>
|
2023-06-02 05:57:19 -04:00
|
|
|
<phase>process-test-classes</phase>
|
2009-01-04 12:45:32 -05:00
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>report</id>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
2023-06-02 05:57:19 -04:00
|
|
|
<phase>test</phase>
|
2009-01-04 12:45:32 -05:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>${basedir}</directory>
|
|
|
|
<includes>
|
|
|
|
<include>coverage.ec</include>
|
|
|
|
</includes>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
2008-12-11 14:24:23 -05:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2009-01-04 12:45:32 -05:00
|
|
|
</build>
|
2008-12-11 14:24:23 -05:00
|
|
|
</profile>
|
2010-08-02 20:36:19 -04:00
|
|
|
<profile>
|
|
|
|
<id>proxy</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>proxy.host</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<proxy.type>http</proxy.type>
|
|
|
|
<proxy.active>true</proxy.active>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
2007-09-23 21:31:02 -04:00
|
|
|
</profiles>
|
2006-10-26 01:00:09 -04:00
|
|
|
</project>
|