Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ class DependencyConstraints {
deps.put("log4j-slf4j2-impl.version", "2.23.1")
deps.put("micrometer.version", "1.14.0")
deps.put("shiro.version", "2.1.0")
// GEODE-10583: Pin Bouncy Castle (transitive via shiro-crypto-hash) to a fixed version
deps.put("bouncycastle.version", "1.84")
deps.put("slf4j-api.version", "2.0.17")
deps.put("jakarta.transaction-api.version", "2.0.1")
deps.put("jboss-modules.version", "1.11.0.Final")
Expand Down Expand Up @@ -179,6 +181,8 @@ class DependencyConstraints {
api(group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.13')
api(group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.4.15')
api(group: 'org.apache.shiro', name: 'shiro-core', version: get('shiro.version'))
// GEODE-10583: Pin Bouncy Castle provider (pulled in via shiro-crypto-hash) to 1.84
api(group: 'org.bouncycastle', name: 'bcprov-jdk18on', version: get('bouncycastle.version'))
api(group: 'org.assertj', name: 'assertj-core', version: '3.22.0')
api(group: 'org.awaitility', name: 'awaitility', version: '4.2.0')
api(group: 'org.buildobjects', name: 'jproc', version: '2.8.0')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@ lib/antlr-runtime-3.5.2.jar
lib/asm-9.9.1.jar
lib/asm-commons-9.9.1.jar
lib/asm-tree-9.9.1.jar
lib/bcprov-jdk18on-1.82.jar
lib/bcprov-jdk18on-1.84.jar
lib/classgraph-4.8.147.jar
lib/classmate-1.5.1.jar
lib/commons-beanutils-1.11.0.jar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,4 @@ jboss-logging-3.4.3.Final.jar
classmate-1.5.1.jar
jakarta.el-api-5.0.0.jar
jakarta.inject-api-2.0.1.jar
bcprov-jdk18on-1.82.jar
bcprov-jdk18on-1.84.jar
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ asm-commons-9.9.1.jar
asm-tree-9.9.1.jar
asm-9.9.1.jar
txw2-4.0.2.jar
bcprov-jdk18on-1.82.jar
bcprov-jdk18on-1.84.jar
reactor-core-3.6.10.jar
jline-console-3.26.3.jar
jline-builtins-3.26.3.jar
Expand Down
Loading