Skip to content

Commit

Permalink
Clean up plexus-utils and plexus-xml dependencies (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Sep 10, 2024
1 parent db7782f commit afed8df
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ updates:
ignore:
# maven core artifacts are provided by the running maven, do not update to prevent consuming something unavailable
- dependency-name: "org.apache.maven:*"
# https://lists.apache.org/thread/ltd1g1dbv0lqqdw5q941gmrkfyn6m87m
- dependency-name: "org.codehaus.plexus:plexus-utils"
# Per https://codehaus-plexus.github.io/plexus-utils/ pin plexus-xml to 3
# for Maven 3 compatibility, as plexus-xml 4 works only in Maven 4.
- dependency-name: "org.codehaus.plexus:plexus-xml"
versions: [">=4.0.0"]
- package-ecosystem: github-actions
directory: /
Expand Down
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,12 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.5.1</version>
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-xml</artifactId>
<version>3.0.1</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit afed8df

Please sign in to comment.