Skip to content

Commit 49c31b9

Browse files
committed
Update various dependencies, add exclusions
Commons logging was found in multiple (transitive) dependencies.
1 parent e6eb837 commit 49c31b9

File tree

1 file changed

+33
-15
lines changed

1 file changed

+33
-15
lines changed

pom.xml

Lines changed: 33 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,17 @@
7373
<dependency>
7474
<groupId>commons-codec</groupId>
7575
<artifactId>commons-codec</artifactId>
76-
<version>1.15</version>
76+
<version>1.17.1</version>
7777
</dependency>
7878
<dependency>
79-
<groupId>commons-fileupload</groupId>
80-
<artifactId>commons-fileupload</artifactId>
81-
<version>1.4</version>
79+
<groupId>commons-fileupload</groupId>
80+
<artifactId>commons-fileupload</artifactId>
81+
<version>1.5</version>
8282
</dependency>
8383
<dependency>
8484
<groupId>com.github.jsonld-java</groupId>
8585
<artifactId>jsonld-java</artifactId>
86-
<version>0.13.4</version>
86+
<version>0.13.6</version>
8787
<exclusions>
8888
<exclusion>
8989
<groupId>org.apache.httpcomponents</groupId>
@@ -103,7 +103,7 @@
103103
<dependency>
104104
<groupId>jaxen</groupId>
105105
<artifactId>jaxen</artifactId>
106-
<version>1.2.0</version>
106+
<version>2.0.0</version>
107107
</dependency>
108108
<dependency>
109109
<groupId>org.jdom</groupId>
@@ -113,12 +113,12 @@
113113
<dependency>
114114
<groupId>com.fasterxml.jackson.core</groupId>
115115
<artifactId>jackson-core</artifactId>
116-
<version>2.13.0</version>
116+
<version>2.18.2</version>
117117
</dependency>
118118
<dependency>
119119
<groupId>com.fasterxml.jackson.core</groupId>
120120
<artifactId>jackson-databind</artifactId>
121-
<version>2.13.0</version>
121+
<version>2.18.2</version>
122122
</dependency>
123123
<dependency>
124124
<groupId>org.openrdf.sesame</groupId>
@@ -133,7 +133,7 @@
133133
<dependency>
134134
<groupId>org.apache.httpcomponents</groupId>
135135
<artifactId>httpclient</artifactId>
136-
<version>4.5.13</version>
136+
<version>4.5.14</version>
137137
<exclusions>
138138
<exclusion>
139139
<groupId>commons-logging</groupId>
@@ -176,17 +176,29 @@
176176
<groupId>org.elasticsearch.client</groupId>
177177
<artifactId>elasticsearch-rest-high-level-client</artifactId>
178178
<version>7.13.4</version>
179+
<exclusions>
180+
<exclusion>
181+
<groupId>commons-logging</groupId>
182+
<artifactId>commons-logging</artifactId>
183+
</exclusion>
184+
</exclusions>
179185
</dependency>
180186
<dependency>
181187
<groupId>com.amazonaws</groupId>
182188
<artifactId>aws-java-sdk-core</artifactId>
183-
<version>1.12.129</version>
189+
<version>1.12.779</version>
190+
<exclusions>
191+
<exclusion>
192+
<groupId>commons-logging</groupId>
193+
<artifactId>commons-logging</artifactId>
194+
</exclusion>
195+
</exclusions>
184196
</dependency>
185197
<!-- testing -->
186198
<dependency>
187-
<groupId>org.mockito</groupId>
188-
<artifactId>mockito-core</artifactId>
189-
<version>4.1.0</version>
199+
<groupId>org.mockito</groupId>
200+
<artifactId>mockito-core</artifactId>
201+
<version>5.14.2</version>
190202
<scope>test</scope>
191203
</dependency>
192204
<dependency>
@@ -199,12 +211,18 @@
199211
<dependency>
200212
<groupId>com.github.scribejava</groupId>
201213
<artifactId>scribejava-apis</artifactId>
202-
<version>8.3.1</version>
214+
<version>8.3.3</version>
203215
</dependency>
204216
<dependency>
205217
<groupId>org.springframework.security</groupId>
206218
<artifactId>spring-security-core</artifactId>
207-
<version>5.6.0</version>
219+
<version>6.4.1</version>
220+
<exclusions>
221+
<exclusion>
222+
<groupId>org.springframework</groupId>
223+
<artifactId>spring-jcl</artifactId>
224+
</exclusion>
225+
</exclusions>
208226
</dependency>
209227
</dependencies>
210228
<build>

0 commit comments

Comments
 (0)