| <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-impl-modules</artifactId> |
| <version>4.1.0-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>maven-executor</artifactId> |
| |
| <name>Maven 4 Executor</name> |
| <description>Maven 4 Executor, for executing Maven 3/4.</description> |
| |
| <properties> |
| <maven3version>3.9.11</maven3version> |
| <maven4version>${project.version}</maven4version> |
| <testTmpDir>${project.build.directory}/tmp</testTmpDir> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-api-annotations</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-api</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-params</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>eu.maveniverse.maven.mimir</groupId> |
| <artifactId>testing</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>apache-maven</artifactId> |
| <version>${project.version}</version> |
| <classifier>bin</classifier> |
| <type>zip</type> |
| <scope>test</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>*</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>prepare-maven4-distro</id> |
| <goals> |
| <goal>unpack-dependencies</goal> |
| </goals> |
| <phase>generate-test-resources</phase> |
| <configuration> |
| <includeArtifactIds>apache-maven</includeArtifactIds> |
| </configuration> |
| </execution> |
| <execution> |
| <id>prepare-maven3-distro</id> |
| <goals> |
| <goal>unpack</goal> |
| </goals> |
| <phase>generate-test-resources</phase> |
| <configuration> |
| <artifactItems> |
| <artifactItem> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>apache-maven</artifactId> |
| <version>${maven3version}</version> |
| <classifier>bin</classifier> |
| <type>zip</type> |
| </artifactItem> |
| </artifactItems> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>create-tmp-dir</id> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| <phase>process-test-resources</phase> |
| <configuration> |
| <target> |
| <mkdir dir="${testTmpDir}" /> |
| </target> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <promoteUserPropertiesToSystemProperties>false</promoteUserPropertiesToSystemProperties> |
| <systemPropertyVariables> |
| <maven3version>${maven3version}</maven3version> |
| <maven4version>${maven4version}</maven4version> |
| <maven3home>${project.build.directory}/dependency/apache-maven-${maven3version}</maven3home> |
| <maven4home>${project.build.directory}/dependency/apache-maven-${maven4version}</maven4home> |
| <localRepository>${settings.localRepository}</localRepository> |
| </systemPropertyVariables> |
| <argLine>-Xmx256m @{jacocoArgLine} -Djava.io.tmpdir=${testTmpDir}</argLine> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |