Skip to content

Commit 52c2372

Browse files
Manage transitive dependency versions
1 parent c5a389d commit 52c2372

File tree

1 file changed

+26
-5
lines changed

1 file changed

+26
-5
lines changed

pom.xml

+26-5
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,32 @@ under the License.
7676
<project.build.outputTimestamp>2021-02-14T00:04:14Z</project.build.outputTimestamp>
7777
</properties>
7878

79+
<dependencyManagement>
80+
<!-- manage versions for transitive dependency -->
81+
<dependencies>
82+
<dependency>
83+
<groupId>commons-beanutils</groupId>
84+
<artifactId>commons-beanutils</artifactId>
85+
<version>1.9.4</version>
86+
</dependency>
87+
<dependency>
88+
<groupId>commons-codec</groupId>
89+
<artifactId>commons-codec</artifactId>
90+
<version>1.15</version>
91+
</dependency>
92+
<dependency>
93+
<groupId>commons-collections</groupId>
94+
<artifactId>commons-collections</artifactId>
95+
<version>3.2.2</version>
96+
</dependency>
97+
<dependency>
98+
<groupId>commons-io</groupId>
99+
<artifactId>commons-io</artifactId>
100+
<version>2.11.0</version>
101+
</dependency>
102+
</dependencies>
103+
</dependencyManagement>
104+
79105
<dependencies>
80106
<dependency>
81107
<groupId>org.apache.maven.shared</groupId>
@@ -187,11 +213,6 @@ under the License.
187213
<artifactId>plexus-utils</artifactId>
188214
<version>3.4.2</version>
189215
</dependency>
190-
<dependency>
191-
<groupId>commons-io</groupId>
192-
<artifactId>commons-io</artifactId>
193-
<version>2.11.0</version>
194-
</dependency>
195216
<dependency>
196217
<groupId>org.codehaus.plexus</groupId>
197218
<artifactId>plexus-interpolation</artifactId>

0 commit comments

Comments
 (0)