Skip to content

Commit a9bfe60

Browse files
committed
Update dependencies to update the bouncy castle dependency versions
1 parent 6c1ac84 commit a9bfe60

File tree

6 files changed

+72
-17
lines changed

6 files changed

+72
-17
lines changed

plugins/integrations/kubernetes-service/pom.xml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -124,16 +124,6 @@
124124
<version>${cs.hamcrest.version}</version>
125125
<scope>test</scope>
126126
</dependency>
127-
<dependency>
128-
<groupId>org.bouncycastle</groupId>
129-
<artifactId>bcprov-jdk18on</artifactId>
130-
<version>${cs.bcprov.version}</version>
131-
</dependency>
132-
<dependency>
133-
<groupId>org.bouncycastle</groupId>
134-
<artifactId>bctls-jdk18on</artifactId>
135-
<version>${cs.bcprov.version}</version>
136-
</dependency>
137127
<dependency>
138128
<groupId>joda-time</groupId>
139129
<artifactId>joda-time</artifactId>

plugins/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,13 +203,13 @@
203203
<dependency>
204204
<groupId>io.minio</groupId>
205205
<artifactId>minio</artifactId>
206-
<version>8.5.2</version>
206+
<version>${cs.minio.version}</version>
207207
<scope>compile</scope>
208208
</dependency>
209209
<dependency>
210210
<groupId>io.minio</groupId>
211211
<artifactId>minio-admin</artifactId>
212-
<version>8.5.2</version>
212+
<version>${cs.minio.version}</version>
213213
<scope>compile</scope>
214214
</dependency>
215215
<dependency>

plugins/storage/object/minio/pom.xml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,24 @@
4646
<dependency>
4747
<groupId>io.minio</groupId>
4848
<artifactId>minio</artifactId>
49-
<version>8.5.2</version>
49+
<version>${cs.minio.version}</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>io.minio</groupId>
5353
<artifactId>minio-admin</artifactId>
54-
<version>8.5.2</version>
54+
<version>${cs.minio.version}</version>
55+
</dependency>
56+
<!-- Pin okhttp3 to the version required by minio 8.6.0+, overriding the older
57+
version transitively pulled by influxdb-java -->
58+
<dependency>
59+
<groupId>com.squareup.okhttp3</groupId>
60+
<artifactId>okhttp</artifactId>
61+
<version>5.1.0</version>
62+
</dependency>
63+
<dependency>
64+
<groupId>com.squareup.okhttp3</groupId>
65+
<artifactId>logging-interceptor</artifactId>
66+
<version>5.1.0</version>
5567
</dependency>
5668
</dependencies>
5769
</project>

plugins/storage/object/simulator/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@
4646
<dependency>
4747
<groupId>io.minio</groupId>
4848
<artifactId>minio</artifactId>
49-
<version>8.5.2</version>
49+
<version>${cs.minio.version}</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>io.minio</groupId>
5353
<artifactId>minio-admin</artifactId>
54-
<version>8.5.2</version>
54+
<version>${cs.minio.version}</version>
5555
</dependency>
5656
</dependencies>
5757
</project>

plugins/user-authenticators/ldap/pom.xml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,18 @@
172172
<groupId>org.apache.directory.shared</groupId>
173173
<artifactId>shared-ldap-schema</artifactId>
174174
</exclusion>
175+
<exclusion>
176+
<groupId>org.bouncycastle</groupId>
177+
<artifactId>bcprov-jdk15on</artifactId>
178+
</exclusion>
179+
<exclusion>
180+
<groupId>org.bouncycastle</groupId>
181+
<artifactId>bcpkix-jdk15on</artifactId>
182+
</exclusion>
183+
<exclusion>
184+
<groupId>org.bouncycastle</groupId>
185+
<artifactId>bcutil-jdk15on</artifactId>
186+
</exclusion>
175187
</exclusions>
176188
</dependency>
177189
<dependency>
@@ -191,12 +203,40 @@
191203
<artifactId>apacheds-core</artifactId>
192204
<version>${ads.version}</version>
193205
<scope>test</scope>
206+
<exclusions>
207+
<exclusion>
208+
<groupId>org.bouncycastle</groupId>
209+
<artifactId>bcprov-jdk15on</artifactId>
210+
</exclusion>
211+
<exclusion>
212+
<groupId>org.bouncycastle</groupId>
213+
<artifactId>bcpkix-jdk15on</artifactId>
214+
</exclusion>
215+
<exclusion>
216+
<groupId>org.bouncycastle</groupId>
217+
<artifactId>bcutil-jdk15on</artifactId>
218+
</exclusion>
219+
</exclusions>
194220
</dependency>
195221
<dependency>
196222
<groupId>org.apache.directory.server</groupId>
197223
<artifactId>apacheds-protocol-ldap</artifactId>
198224
<version>${ads.version}</version>
199225
<scope>test</scope>
226+
<exclusions>
227+
<exclusion>
228+
<groupId>org.bouncycastle</groupId>
229+
<artifactId>bcprov-jdk15on</artifactId>
230+
</exclusion>
231+
<exclusion>
232+
<groupId>org.bouncycastle</groupId>
233+
<artifactId>bcpkix-jdk15on</artifactId>
234+
</exclusion>
235+
<exclusion>
236+
<groupId>org.bouncycastle</groupId>
237+
<artifactId>bcutil-jdk15on</artifactId>
238+
</exclusion>
239+
</exclusions>
200240
</dependency>
201241
<dependency>
202242
<groupId>org.apache.directory.server</groupId>

pom.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
<cs.axiom.version>1.2.8</cs.axiom.version>
133133
<cs.axis2.version>1.6.4</cs.axis2.version>
134134
<cs.batik.version>1.14</cs.batik.version>
135-
<cs.bcprov.version>1.72</cs.bcprov.version>
135+
<cs.bcprov.version>1.83</cs.bcprov.version>
136136
<cs.cglib.version>3.3.0</cs.cglib.version>
137137
<cs.checkstyle-lib.version>8.18</cs.checkstyle-lib.version>
138138
<cs.cron-utils.version>9.2.0</cs.cron-utils.version>
@@ -191,6 +191,7 @@
191191
<cs.ini.version>0.5.4</cs.ini.version>
192192
<cs.caffeine.version>3.1.7</cs.caffeine.version>
193193
<cs.protobuf.version>3.25.5</cs.protobuf.version>
194+
<cs.minio.version>8.6.0</cs.minio.version>
194195
</properties>
195196

196197
<distributionManagement>
@@ -668,6 +669,18 @@
668669
<groupId>org.slf4j</groupId>
669670
<artifactId>log4j-over-slf4j</artifactId>
670671
</exclusion>
672+
<exclusion>
673+
<groupId>org.bouncycastle</groupId>
674+
<artifactId>bcprov-jdk15on</artifactId>
675+
</exclusion>
676+
<exclusion>
677+
<groupId>org.bouncycastle</groupId>
678+
<artifactId>bcpkix-jdk15on</artifactId>
679+
</exclusion>
680+
<exclusion>
681+
<groupId>org.bouncycastle</groupId>
682+
<artifactId>bcutil-jdk15on</artifactId>
683+
</exclusion>
671684
</exclusions>
672685
</dependency>
673686
<dependency>

0 commit comments

Comments
 (0)