From 78fb7dcc8eeb5f6970a3152d2b5efa82be6c6ffd Mon Sep 17 00:00:00 2001 From: Elliotte Rusty Harold Date: Sat, 16 Nov 2024 02:18:39 +0000 Subject: [PATCH] Update to 1.9.22 --- src/site/markdown/using-resolver-in-maven-plugins.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/site/markdown/using-resolver-in-maven-plugins.md b/src/site/markdown/using-resolver-in-maven-plugins.md index 7c2544648..a6eda28fe 100644 --- a/src/site/markdown/using-resolver-in-maven-plugins.md +++ b/src/site/markdown/using-resolver-in-maven-plugins.md @@ -36,14 +36,14 @@ POM: org.apache.maven.resolver maven-resolver-api - 1.9.20 + 1.9.22 provided org.apache.maven.resolver maven-resolver-util - 1.9.20 + 1.9.22 compile @@ -58,7 +58,7 @@ enforced by the Maven core, just like other Maven APIs. So be sure to compile/test your plugin against the version of `maven-resolver-api` that is used by the minimum version of Maven that your plugin wants to support. -Next, in your mojo source, you would need to grab the repository related +Next, in your mojo source, you need to grab the repository related components and parameters: ```java @@ -71,7 +71,7 @@ public class MyMojo extends AbstractMojo { /** - * The entry point to resolver (fka. Aether), i.e. the component doing all the work. + * The entry point to resolver (a.k.a. Aether), i.e. the component doing all the work. */ @Component private RepositorySystem repoSystem;