Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to use maven-resolver instead of aether #447

Closed
khmarbaise opened this issue Dec 30, 2023 · 0 comments
Closed

Move to use maven-resolver instead of aether #447

khmarbaise opened this issue Dec 30, 2023 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@khmarbaise
Copy link
Owner

Is your feature request related to a problem? Please describe.
The itf-maven-plugin currently uses:

    <dependency>
      <groupId>org.eclipse.aether</groupId>
      <artifactId>aether-api</artifactId>
      <version>${aetherVersion}</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.eclipse.aether</groupId>
      <artifactId>aether-util</artifactId>
      <version>${aetherVersion}</version>
      <!-- To work in Maven versions older than 3.9.0 -->
      <scope>compile</scope>
    </dependency>

Describe the solution you'd like

 <dependency>
      <groupId>org.apache.maven.resolver</groupId>
      <artifactId>maven-resolver-api</artifactId>
      <version>1.9.18</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven.resolver</groupId>
      <artifactId>maven-resolver-util</artifactId>
      <version>1.9.18</version>
      <!-- To work in Maven versions older than 3.9.0 -->
      <scope>compile</scope>
    </dependency>
@khmarbaise khmarbaise added the enhancement New feature or request label Dec 30, 2023
@khmarbaise khmarbaise added this to the itf-extension-0.14.0 milestone Dec 30, 2023
@khmarbaise khmarbaise self-assigned this Dec 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant