Skip to content

Commit fb930ca

Browse files
authored
Merge pull request #5588 from dizzzz/fix/upgrade-beanutils
[bugfix] upgrade transient library commons-beanutils
2 parents 70443c1 + 2f3f1d9 commit fb930ca

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

extensions/webdav/pom.xml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,15 @@
5252
<version>${project.version}</version>
5353
</dependency>
5454

55+
<!--
56+
Enforce transient dependency to an explicit version.
57+
-->
58+
<dependency>
59+
<groupId>commons-beanutils</groupId>
60+
<artifactId>commons-beanutils</artifactId>
61+
<version>1.9.4</version>
62+
</dependency>
63+
5564
<dependency>
5665
<groupId>org.exist-db.thirdparty.com.ettrema</groupId>
5766
<artifactId>milton-api</artifactId>
@@ -60,6 +69,10 @@
6069
<groupId>jdom</groupId>
6170
<artifactId>jdom</artifactId>
6271
</exclusion>
72+
<exclusion>
73+
<groupId>commons-beanutils</groupId>
74+
<artifactId>commons-beanutils</artifactId>
75+
</exclusion>
6376
</exclusions>
6477
</dependency>
6578

@@ -186,7 +199,8 @@
186199
<failOnWarning>true</failOnWarning>
187200
<ignoredUnusedDeclaredDependencies>
188201
<ignoredUnusedDeclaredDependency>org.junit.vintage:junit-vintage-engine:jar</ignoredUnusedDeclaredDependency>
189-
<ignoredUnusedDeclaredDependency>org.jdom:jdom:jar:1.1.3</ignoredUnusedDeclaredDependency>
202+
<ignoredUnusedDeclaredDependency>org.jdom:jdom:jar</ignoredUnusedDeclaredDependency>
203+
<ignoredUnusedDeclaredDependency>commons-beanutils:commons-beanutils</ignoredUnusedDeclaredDependency>
190204

191205
<!-- needed for running tests that depend on eXist-db Jetty server -->
192206
<ignoredUnusedDeclaredDependency>${project.groupId}:exist-jetty-config:jar:${project.version}</ignoredUnusedDeclaredDependency>

0 commit comments

Comments
 (0)