Skip to content

Commit

Permalink
Fixed #447 - Move to use maven-resolver instead of aether
Browse files Browse the repository at this point in the history
  • Loading branch information
khmarbaise committed Dec 30, 2023
1 parent b1672b7 commit 79ee2e5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
:issue-421: https://github.com/khmarbaise/maven-it-extension/issues/421[Fixed #421]
:issue-421: https://github.com/khmarbaise/maven-it-extension/issues/421[Fixed #421]
:issue-444: https://github.com/khmarbaise/maven-it-extension/issues/444[Fixed #444]
:issue-447: https://github.com/khmarbaise/maven-it-extension/issues/447[Fixed #447]

:release_0_14_0: https://github.com/khmarbaise/maven-it-extension/milestone/14

Expand All @@ -50,7 +51,7 @@

*Build Improvements*

* {issue-???} - ?
* {issue-447} - Move to use maven-resolver instead of aether

*Documentation Improvements*

Expand Down
10 changes: 4 additions & 6 deletions itf-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,13 @@
! The following is required to get that running on Maven 3.8.X and below
-->
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-api</artifactId>
<version>${aetherVersion}</version>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-util</artifactId>
<version>${aetherVersion}</version>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-util</artifactId>
<!-- To work in Maven versions older than 3.9.0 -->
<scope>compile</scope>
</dependency>
Expand Down
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
<trimStackTrace>false</trimStackTrace>
<automatic-module-name>com.soebes.itf.extension</automatic-module-name>
<maven-plugin-plugin.version>3.10.2</maven-plugin-plugin.version>
<maven-resolver.version>1.9.18</maven-resolver.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -118,6 +119,16 @@
<artifactId>maven-model</artifactId>
<version>3.2.5</version>
</dependency>
<dependency>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-api</artifactId>
<version>${maven-resolver.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-util</artifactId>
<version>${maven-resolver.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 79ee2e5

Please sign in to comment.