Skip to content

Commit

Permalink
Bump plexus-utils from 3.5.1 to 4.0.0 (#348)
Browse files Browse the repository at this point in the history
* Bump plexus-utils from 3.5.1 to 4.0.0

Bumps [plexus-utils](https://github.com/codehaus-plexus/plexus-utils) from 3.5.1 to 4.0.0.
- [Release notes](https://github.com/codehaus-plexus/plexus-utils/releases)
- [Commits](codehaus-plexus/plexus-utils@plexus-utils-3.5.1...plexus-utils-4.0.0)

---
updated-dependencies:
- dependency-name: org.codehaus.plexus:plexus-utils
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix build and tests

# Conflicts:
#	pom.xml

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Guillaume Nodet <gnodet@gmail.com>
  • Loading branch information
dependabot[bot] and gnodet authored Jun 2, 2023
1 parent 378365f commit a980453
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 2 deletions.
4 changes: 4 additions & 0 deletions modello-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-xml</artifactId>
</dependency>
</dependencies>

<build>
Expand Down
2 changes: 1 addition & 1 deletion modello-plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<phase>process-test-resources</phase>
<configuration>
<outputDirectory>${project.build.directory}/test-libs</outputDirectory>
<excludeTransitive>true</excludeTransitive>
<excludeTransitive>false</excludeTransitive>
<stripVersion>true</stripVersion>
</configuration>
</execution>
Expand Down
4 changes: 4 additions & 0 deletions modello-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-xml</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-javac</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ private void compileGeneratedSources(String verifierId, String javaSource) throw

addDependency("junit", "junit");
addDependency("org.codehaus.plexus", "plexus-utils");
addDependency("org.codehaus.plexus", "plexus-xml");
addDependency("org.apache.maven", "maven-api-xml");
addDependency("org.apache.maven", "maven-xml-impl");
addDependency("org.codehaus.modello", "modello-test");

String[] classPathElements = new String[dependencies.size() + 2];
Expand Down
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,12 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.5.1</version>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-xml</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>org.sonatype.plexus</groupId>
Expand Down

0 comments on commit a980453

Please sign in to comment.