Skip to content

Commit eed79d7

Browse files
committed
Update various dependencies, add exclusions
Commons logging was found in multiple (transitive) dependencies. (cherry picked from commit 49c31b9)
1 parent 95e0448 commit eed79d7

1 file changed

Lines changed: 48 additions & 7 deletions

File tree

pom.xml

Lines changed: 48 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,17 @@
6969
<dependency>
7070
<groupId>commons-codec</groupId>
7171
<artifactId>commons-codec</artifactId>
72-
<version>1.15</version>
72+
<version>1.17.1</version>
73+
</dependency>
74+
<dependency>
75+
<groupId>commons-fileupload</groupId>
76+
<artifactId>commons-fileupload</artifactId>
77+
<version>1.5</version>
7378
</dependency>
7479
<dependency>
7580
<groupId>com.github.jsonld-java</groupId>
7681
<artifactId>jsonld-java</artifactId>
77-
<version>0.13.4</version>
82+
<version>0.13.6</version>
7883
<exclusions>
7984
<exclusion>
8085
<groupId>org.apache.httpcomponents</groupId>
@@ -94,7 +99,7 @@
9499
<dependency>
95100
<groupId>jaxen</groupId>
96101
<artifactId>jaxen</artifactId>
97-
<version>1.2.0</version>
102+
<version>2.0.0</version>
98103
</dependency>
99104
<dependency>
100105
<groupId>org.jdom</groupId>
@@ -104,12 +109,12 @@
104109
<dependency>
105110
<groupId>com.fasterxml.jackson.core</groupId>
106111
<artifactId>jackson-core</artifactId>
107-
<version>2.13.0</version>
112+
<version>2.18.2</version>
108113
</dependency>
109114
<dependency>
110115
<groupId>com.fasterxml.jackson.core</groupId>
111116
<artifactId>jackson-databind</artifactId>
112-
<version>2.13.2.1</version>
117+
<version>2.18.2</version>
113118
</dependency>
114119
<dependency>
115120
<groupId>org.openrdf.sesame</groupId>
@@ -124,7 +129,7 @@
124129
<dependency>
125130
<groupId>org.apache.httpcomponents</groupId>
126131
<artifactId>httpclient</artifactId>
127-
<version>4.5.13</version>
132+
<version>4.5.14</version>
128133
<exclusions>
129134
<exclusion>
130135
<groupId>commons-logging</groupId>
@@ -167,18 +172,54 @@
167172
<groupId>org.elasticsearch.client</groupId>
168173
<artifactId>elasticsearch-rest-high-level-client</artifactId>
169174
<version>7.13.4</version>
175+
<exclusions>
176+
<exclusion>
177+
<groupId>commons-logging</groupId>
178+
<artifactId>commons-logging</artifactId>
179+
</exclusion>
180+
</exclusions>
170181
</dependency>
171182
<dependency>
172183
<groupId>com.amazonaws</groupId>
173184
<artifactId>aws-java-sdk-core</artifactId>
174-
<version>1.12.129</version>
185+
<version>1.12.779</version>
186+
<exclusions>
187+
<exclusion>
188+
<groupId>commons-logging</groupId>
189+
<artifactId>commons-logging</artifactId>
190+
</exclusion>
191+
</exclusions>
192+
</dependency>
193+
<!-- testing -->
194+
<dependency>
195+
<groupId>org.mockito</groupId>
196+
<artifactId>mockito-core</artifactId>
197+
<version>5.14.2</version>
198+
<scope>test</scope>
175199
</dependency>
176200
<dependency>
177201
<groupId>junit</groupId>
178202
<artifactId>junit</artifactId>
179203
<version>4.13.2</version>
180204
<scope>test</scope>
181205
</dependency>
206+
<!-- Authentication -->
207+
<dependency>
208+
<groupId>com.github.scribejava</groupId>
209+
<artifactId>scribejava-apis</artifactId>
210+
<version>8.3.3</version>
211+
</dependency>
212+
<dependency>
213+
<groupId>org.springframework.security</groupId>
214+
<artifactId>spring-security-core</artifactId>
215+
<version>6.4.1</version>
216+
<exclusions>
217+
<exclusion>
218+
<groupId>org.springframework</groupId>
219+
<artifactId>spring-jcl</artifactId>
220+
</exclusion>
221+
</exclusions>
222+
</dependency>
182223
</dependencies>
183224
<build>
184225
<finalName>simpleAnnotationStore</finalName>

0 commit comments

Comments
 (0)