This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch mvn4 in repository https://gitbox.apache.org/repos/asf/maven-dependency-analyzer.git
commit b66c87a016faf047c27c0e22f5b3e36b9f959e17 Author: Guillaume Nodet <[email protected]> AuthorDate: Fri Jan 28 23:15:42 2022 +0100 mvn4 aggregator --- pom.xml | 40 +++++++++++++++++++++++++++------------- 1 file changed, 27 insertions(+), 13 deletions(-) diff --git a/pom.xml b/pom.xml index 3a0aea5..a126300 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-shared-components</artifactId> - <version>34</version> + <version>35-SNAPSHOT</version> <relativePath /> </parent> @@ -59,11 +59,21 @@ </distributionManagement> <properties> - <mavenVersion>3.2.5</mavenVersion> + <mavenVersion>4.0.0-alpha-1-SNAPSHOT</mavenVersion> <javaVersion>8</javaVersion> <project.build.outputTimestamp>2022-01-24T19:57:26Z</project.build.outputTimestamp> </properties> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.apache.maven.shared</groupId> + <artifactId>maven-invoker</artifactId> + <version>3.2.0-SNAPSHOT</version> + </dependency> + </dependencies> + </dependencyManagement> + <dependencies> <dependency> @@ -95,6 +105,11 @@ <version>9.2</version> </dependency> + <dependency> + <groupId>org.eclipse.sisu</groupId> + <artifactId>org.eclipse.sisu.inject</artifactId> + <scope>compile</scope> + </dependency> <!-- testing support --> <dependency> @@ -133,17 +148,16 @@ <plugins> <plugin> - <groupId>org.eclipse.sisu</groupId> - <artifactId>sisu-maven-plugin</artifactId> - <version>0.3.5</version> - <executions> - <execution> - <id>index-project</id> - <goals> - <goal>main-index</goal> - </goals> - </execution> - </executions> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <systemProperties> + <property> + <name>maven.home</name> + <value>${maven.home}</value> + </property> + </systemProperties> + </configuration> </plugin> </plugins> </build>
