Skip to content

Commit

Permalink
Manage transitive dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed May 24, 2022
1 parent c5a389d commit 52c2372
Showing 1 changed file with 26 additions and 5 deletions.
31 changes: 26 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,32 @@ under the License.
<project.build.outputTimestamp>2021-02-14T00:04:14Z</project.build.outputTimestamp>
</properties>

<dependencyManagement>
<!-- manage versions for transitive dependency -->
<dependencies>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.4</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.15</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.2</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.apache.maven.shared</groupId>
Expand Down Expand Up @@ -187,11 +213,6 @@ under the License.
<artifactId>plexus-utils</artifactId>
<version>3.4.2</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-interpolation</artifactId>
Expand Down

0 comments on commit 52c2372

Please sign in to comment.