Skip to content

Commit 0a6552a

Browse files
committed
fix: core/pom.xml to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JAVA-COMMONSCODEC-561518
1 parent c0375d8 commit 0a6552a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<dependency>
6161
<groupId>org.apache.santuario</groupId>
6262
<artifactId>xmlsec</artifactId>
63-
<version>2.1.4</version>
63+
<version>2.1.5</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>commons-codec</groupId>
@@ -117,7 +117,7 @@
117117
<configuration>
118118
<rules>
119119
<evaluateBeanshell>
120-
<condition>javax.crypto.Cipher.getMaxAllowedKeyLength("AES") &gt; 128</condition>
120+
<condition>javax.crypto.Cipher.getMaxAllowedKeyLength("AES") > 128</condition>
121121
</evaluateBeanshell>
122122
</rules>
123123
</configuration>

0 commit comments

Comments
 (0)