|
93 | 93 | <groupId>org.glassfish.jersey.connectors</groupId> |
94 | 94 | <artifactId>jersey-apache-connector</artifactId> |
95 | 95 | <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> |
96 | 109 | </dependency> |
97 | 110 | <dependency> |
98 | 111 | <groupId>org.glassfish.jersey.media</groupId> |
|
112 | 125 | <dependency> |
113 | 126 | <groupId>com.google.guava</groupId> |
114 | 127 | <artifactId>guava</artifactId> |
115 | | - <version>31.1-jre</version> |
| 128 | + <version>33.6.0-jre</version> |
116 | 129 | </dependency> |
117 | 130 | <dependency> |
118 | 131 | <groupId>com.atomgraph.etl.csv</groupId> |
|
146 | 159 | <dependency> |
147 | 160 | <groupId>${project.groupId}</groupId> |
148 | 161 | <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> |
157 | 163 | </dependency> |
158 | 164 | <dependency> |
159 | 165 | <groupId>org.slf4j</groupId> |
|
163 | 169 | <dependency> |
164 | 170 | <groupId>${project.groupId}</groupId> |
165 | 171 | <artifactId>client</artifactId> |
166 | | - <version>4.4.0-SNAPSHOT</version> |
| 172 | + <version>5.0.1</version> |
167 | 173 | <classifier>classes</classifier> |
168 | 174 | </dependency> |
169 | 175 | <dependency> |
170 | 176 | <groupId>${project.groupId}</groupId> |
171 | 177 | <artifactId>client</artifactId> |
172 | | - <version>4.4.0-SNAPSHOT</version> |
| 178 | + <version>5.0.1</version> |
173 | 179 | <type>war</type> |
174 | 180 | </dependency> |
175 | 181 | <dependency> |
|
185 | 191 | <dependency> |
186 | 192 | <groupId>org.jsoup</groupId> |
187 | 193 | <artifactId>jsoup</artifactId> |
188 | | - <version>1.22.1</version> |
| 194 | + <version>1.22.2</version> |
189 | 195 | </dependency> |
190 | 196 | <dependency> |
191 | 197 | <groupId>org.junit.jupiter</groupId> |
192 | 198 | <artifactId>junit-jupiter</artifactId> |
193 | | - <version>5.11.4</version> |
| 199 | + <version>6.1.0</version> |
194 | 200 | <scope>test</scope> |
195 | 201 | </dependency> |
196 | 202 | <dependency> |
197 | 203 | <groupId>org.mockito</groupId> |
198 | 204 | <artifactId>mockito-core</artifactId> |
199 | | - <version>5.12.0</version> |
| 205 | + <version>5.18.0</version> |
200 | 206 | <scope>test</scope> |
201 | 207 | </dependency> |
202 | 208 | <dependency> |
203 | 209 | <groupId>org.mockito</groupId> |
204 | 210 | <artifactId>mockito-junit-jupiter</artifactId> |
205 | | - <version>5.12.0</version> |
| 211 | + <version>5.18.0</version> |
206 | 212 | <scope>test</scope> |
207 | 213 | </dependency> |
208 | 214 | </dependencies> |
|
0 commit comments