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-doxia-sitetools.git
commit 117125951b9686e1a75b95c31b3100face4466aa Author: Guillaume Nodet <[email protected]> AuthorDate: Thu Feb 24 17:00:55 2022 +0100 Switch a few core plugins to the new api --- doxia-integration-tools/pom.xml | 20 +++++++------------- pom.xml | 16 ++-------------- 2 files changed, 9 insertions(+), 27 deletions(-) diff --git a/doxia-integration-tools/pom.xml b/doxia-integration-tools/pom.xml index b195b05..f68a1a7 100644 --- a/doxia-integration-tools/pom.xml +++ b/doxia-integration-tools/pom.xml @@ -149,7 +149,7 @@ <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> - <version>3.3.0</version> + <version>3.4.0-SNAPSHOT</version> <scope>test</scope> <exclusions> <exclusion> @@ -159,15 +159,15 @@ </exclusions> </dependency> <dependency> - <groupId>org.eclipse.aether</groupId> - <artifactId>aether-connector-basic</artifactId> - <version>${aetherVersion}</version> + <groupId>org.apache.maven.resolver</groupId> + <artifactId>maven-resolver-connector-basic</artifactId> + <version>${resolverVersion}</version> <scope>test</scope> </dependency> <dependency> - <groupId>org.eclipse.aether</groupId> - <artifactId>aether-transport-wagon</artifactId> - <version>${aetherVersion}</version> + <groupId>org.apache.maven.resolver</groupId> + <artifactId>maven-resolver-transport-wagon</artifactId> + <version>${resolverVersion}</version> <scope>test</scope> </dependency> <dependency> @@ -201,12 +201,6 @@ <scope>test</scope> </dependency> <dependency> - <groupId>org.eclipse.aether</groupId> - <artifactId>aether-connector-wagon</artifactId> - <version>0.9.0.M2</version> - <scope>test</scope> - </dependency> - <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-http-lightweight</artifactId> <version>1.0</version> diff --git a/pom.xml b/pom.xml index cbb4955..49770bc 100644 --- a/pom.xml +++ b/pom.xml @@ -73,7 +73,8 @@ under the License. <slf4jVersion>1.7.32</slf4jVersion> <mavenVersion>4.0.0-alpha-1-SNAPSHOT</mavenVersion> <aetherVersion>1.0.0.v20140518</aetherVersion> - <wagonVersion>2.8</wagonVersion> + <resolverVersion>1.8.0-SNAPSHOT</resolverVersion> + <wagonVersion>3.5.2-SNAPSHOT</wagonVersion> <junitVersion>5.8.2</junitVersion> <sisuVersion>0.3.5</sisuVersion> <maven.site.path>doxia-sitetools-archives/doxia-sitetools-LATEST</maven.site.path> @@ -274,19 +275,6 @@ under the License. </plugins> </pluginManagement> <plugins> - <plugin> - <groupId>org.eclipse.sisu</groupId> - <artifactId>sisu-maven-plugin</artifactId> - <version>${sisuVersion}</version> - <executions> - <execution> - <goals> - <goal>main-index</goal> - <goal>test-index</goal> - </goals> - </execution> - </executions> - </plugin> <!-- <plugin> <groupId>org.codehaus.mojo</groupId>
