Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
fix: adjust bouncy castle dependencies
Browse files Browse the repository at this point in the history
Makes sure that the managed version of `wss4j-ws-security-common` is the
where the exclusions are handled, and excludes the Bouncy Castle version
1.69 dependency from `kubernetes-client`.
  • Loading branch information
zregvart committed Oct 25, 2022
1 parent 3e2ea1c commit 73c92d7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
10 changes: 0 additions & 10 deletions app/connector/soap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,16 +117,6 @@
<dependency>
<groupId>org.apache.wss4j</groupId>
<artifactId>wss4j-ws-security-common</artifactId>
<exclusions>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down
14 changes: 12 additions & 2 deletions app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1916,11 +1916,11 @@
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<artifactId>bcpkix-jdk15on</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<artifactId>bcprov-jdk15on</artifactId>
</exclusion>
</exclusions>
</dependency>
Expand Down Expand Up @@ -3913,6 +3913,16 @@
<groupId>io.fabric8</groupId>
<artifactId>kubernetes-client</artifactId>
<version>${kubernetes.client.version}</version>
<exclusions>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.fabric8</groupId>
Expand Down

0 comments on commit 73c92d7

Please sign in to comment.