Skip to content

Commit 7ba5dd0

Browse files
namedgraphclaude
andcommitted
Upgraded dependencies: Guava 33.6.0, twirl 2.0.0, client 5.0.1, jsoup 1.22.2, JUnit 6.1.0, Mockito 5.18.0
Pinned commons-codec 1.22.0 (version jena-base 6.1.0 declares) and excluded commons-logging from jersey-apache-connector (jcl-over-slf4j covers JCL). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 4293ee9 commit 7ba5dd0

1 file changed

Lines changed: 21 additions & 15 deletions

File tree

pom.xml

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,19 @@
9393
<groupId>org.glassfish.jersey.connectors</groupId>
9494
<artifactId>jersey-apache-connector</artifactId>
9595
<version>3.1.11</version>
96+
<exclusions>
97+
<!-- exclude commons-logging (via httpclient) - jcl-over-slf4j from Jena provides the JCL API. Otherwise duplicate org.apache.commons.logging classes on the classpath -->
98+
<exclusion>
99+
<groupId>commons-logging</groupId>
100+
<artifactId>commons-logging</artifactId>
101+
</exclusion>
102+
</exclusions>
103+
</dependency>
104+
<dependency>
105+
<!-- pin to the version jena-base 6.1.0 declares; nearest-wins would otherwise downgrade it to 1.18.0 via jersey-apache-connector -->
106+
<groupId>commons-codec</groupId>
107+
<artifactId>commons-codec</artifactId>
108+
<version>1.22.0</version>
96109
</dependency>
97110
<dependency>
98111
<groupId>org.glassfish.jersey.media</groupId>
@@ -112,7 +125,7 @@
112125
<dependency>
113126
<groupId>com.google.guava</groupId>
114127
<artifactId>guava</artifactId>
115-
<version>31.1-jre</version>
128+
<version>33.6.0-jre</version>
116129
</dependency>
117130
<dependency>
118131
<groupId>com.atomgraph.etl.csv</groupId>
@@ -146,14 +159,7 @@
146159
<dependency>
147160
<groupId>${project.groupId}</groupId>
148161
<artifactId>twirl</artifactId>
149-
<version>1.2.0-SNAPSHOT</version>
150-
<exclusions>
151-
<!-- exclude slf4j-reload4j 1.7.x binding; replaced below with 2.0.x matching slf4j-api from Jena -->
152-
<exclusion>
153-
<groupId>org.slf4j</groupId>
154-
<artifactId>slf4j-reload4j</artifactId>
155-
</exclusion>
156-
</exclusions>
162+
<version>2.0.0</version>
157163
</dependency>
158164
<dependency>
159165
<groupId>org.slf4j</groupId>
@@ -163,13 +169,13 @@
163169
<dependency>
164170
<groupId>${project.groupId}</groupId>
165171
<artifactId>client</artifactId>
166-
<version>4.4.0-SNAPSHOT</version>
172+
<version>5.0.1</version>
167173
<classifier>classes</classifier>
168174
</dependency>
169175
<dependency>
170176
<groupId>${project.groupId}</groupId>
171177
<artifactId>client</artifactId>
172-
<version>4.4.0-SNAPSHOT</version>
178+
<version>5.0.1</version>
173179
<type>war</type>
174180
</dependency>
175181
<dependency>
@@ -185,24 +191,24 @@
185191
<dependency>
186192
<groupId>org.jsoup</groupId>
187193
<artifactId>jsoup</artifactId>
188-
<version>1.22.1</version>
194+
<version>1.22.2</version>
189195
</dependency>
190196
<dependency>
191197
<groupId>org.junit.jupiter</groupId>
192198
<artifactId>junit-jupiter</artifactId>
193-
<version>5.11.4</version>
199+
<version>6.1.0</version>
194200
<scope>test</scope>
195201
</dependency>
196202
<dependency>
197203
<groupId>org.mockito</groupId>
198204
<artifactId>mockito-core</artifactId>
199-
<version>5.12.0</version>
205+
<version>5.18.0</version>
200206
<scope>test</scope>
201207
</dependency>
202208
<dependency>
203209
<groupId>org.mockito</groupId>
204210
<artifactId>mockito-junit-jupiter</artifactId>
205-
<version>5.12.0</version>
211+
<version>5.18.0</version>
206212
<scope>test</scope>
207213
</dependency>
208214
</dependencies>

0 commit comments

Comments
 (0)