|
5 | 5 |
|
6 | 6 | <groupId>org.eclipse.basyx</groupId> |
7 | 7 | <artifactId>basyx.sdk</artifactId> |
8 | | - <version>1.5.0</version> |
| 8 | + <version>1.5.1</version> |
9 | 9 | <name>BaSyx SDK</name> |
10 | 10 | <description>BaSyx Software Development Kit</description> |
11 | 11 | <url>https://www.eclipse.org/basyx/</url> |
|
46 | 46 | <properties> |
47 | 47 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
48 | 48 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
49 | | - <spring-security-version>5.8.7</spring-security-version> |
| 49 | + <spring-security-version>5.8.9</spring-security-version> |
50 | 50 | </properties> |
51 | 51 |
|
52 | 52 | <repositories> |
|
65 | 65 | <!-- Compile Sources using Java 11 --> |
66 | 66 | <plugin> |
67 | 67 | <artifactId>maven-compiler-plugin</artifactId> |
68 | | - <version>3.11.0</version> |
| 68 | + <version>3.12.1</version> |
69 | 69 | <configuration> |
70 | 70 | <source>11</source> |
71 | 71 | <target>11</target> |
|
110 | 110 | <plugin> |
111 | 111 | <groupId>org.apache.maven.plugins</groupId> |
112 | 112 | <artifactId>maven-surefire-plugin</artifactId> |
113 | | - <version>3.1.2</version> |
| 113 | + <version>3.2.5</version> |
114 | 114 | <configuration> |
115 | 115 | <excludes> |
116 | 116 | <exclude>**/*HTTP*</exclude> |
|
126 | 126 | <plugin> |
127 | 127 | <groupId>org.apache.maven.plugins</groupId> |
128 | 128 | <artifactId>maven-failsafe-plugin</artifactId> |
129 | | - <version>3.1.2</version> |
| 129 | + <version>3.2.5</version> |
130 | 130 | <configuration> |
131 | 131 | <includes> |
132 | 132 | <include>**/*HTTP*</include> |
|
147 | 147 | <plugin> |
148 | 148 | <groupId>org.apache.maven.plugins</groupId> |
149 | 149 | <artifactId>maven-javadoc-plugin</artifactId> |
150 | | - <version>3.6.0</version> |
| 150 | + <version>3.6.3</version> |
151 | 151 | <configuration> |
152 | 152 | <source>8</source> |
153 | 153 | </configuration> |
|
169 | 169 | <dependency> |
170 | 170 | <groupId>ch.qos.logback</groupId> |
171 | 171 | <artifactId>logback-classic</artifactId> |
172 | | - <version>1.4.12</version> |
| 172 | + <version>1.4.14</version> |
173 | 173 | <scope>runtime</scope> |
174 | 174 | </dependency> |
175 | 175 |
|
176 | 176 | <dependency> |
177 | 177 | <groupId>org.slf4j</groupId> |
178 | 178 | <artifactId>slf4j-api</artifactId> |
179 | | - <version>2.0.9</version> |
| 179 | + <version>2.0.11</version> |
180 | 180 | </dependency> |
181 | 181 |
|
182 | 182 |
|
|
192 | 192 | <dependency> |
193 | 193 | <groupId>org.mockito</groupId> |
194 | 194 | <artifactId>mockito-core</artifactId> |
195 | | - <version>5.5.0</version> |
| 195 | + <version>5.10.0</version> |
196 | 196 | <scope>test</scope> |
197 | 197 | </dependency> |
198 | 198 |
|
|
214 | 214 | <dependency> |
215 | 215 | <groupId>org.eclipse.milo</groupId> |
216 | 216 | <artifactId>sdk-client</artifactId> |
217 | | - <version>0.6.11</version> |
| 217 | + <version>0.6.12</version> |
218 | 218 | </dependency> |
219 | 219 |
|
220 | 220 | <!-- Eclipse Milo (for OPC-UA server) --> |
221 | 221 | <dependency> |
222 | 222 | <groupId>org.eclipse.milo</groupId> |
223 | 223 | <artifactId>sdk-server</artifactId> |
224 | | - <version>0.6.11</version> |
| 224 | + <version>0.6.12</version> |
225 | 225 | </dependency> |
226 | 226 |
|
227 | 227 | <!-- Java Servlet API (for HTTP provider) --> |
|
242 | 242 | <dependency> |
243 | 243 | <groupId>org.glassfish.jersey.core</groupId> |
244 | 244 | <artifactId>jersey-client</artifactId> |
245 | | - <version>2.40</version> |
| 245 | + <version>2.41</version> |
246 | 246 | </dependency> |
247 | 247 |
|
248 | 248 | <!-- Jersey InjectionManager (for Jersey client) --> |
249 | 249 | <dependency> |
250 | 250 | <groupId>org.glassfish.jersey.inject</groupId> |
251 | 251 | <artifactId>jersey-hk2</artifactId> |
252 | | - <version>2.40</version> |
| 252 | + <version>2.41</version> |
253 | 253 | </dependency> |
254 | 254 |
|
255 | 255 | <!-- Tomcat 8 for HTTP server resource --> |
256 | 256 | <dependency> |
257 | 257 | <groupId>org.apache.tomcat</groupId> |
258 | 258 | <artifactId>tomcat-catalina</artifactId> |
259 | | - <version>9.0.83</version> |
| 259 | + <version>9.0.85</version> |
260 | 260 | </dependency> |
261 | 261 |
|
262 | 262 | <!-- Used for creating .aasx files --> |
|
269 | 269 | <dependency> |
270 | 270 | <groupId>org.apache.commons</groupId> |
271 | 271 | <artifactId>commons-compress</artifactId> |
272 | | - <version>1.24.0</version> |
| 272 | + <version>1.25.0</version> |
273 | 273 | </dependency> |
274 | 274 |
|
275 | 275 | <!-- Used by Logback to compile filter expressions from logback.xml --> |
276 | 276 | <dependency> |
277 | 277 | <groupId>org.codehaus.janino</groupId> |
278 | 278 | <artifactId>janino</artifactId> |
279 | | - <version>3.1.10</version> |
| 279 | + <version>3.1.11</version> |
280 | 280 | <scope>runtime</scope> |
281 | 281 | </dependency> |
282 | 282 |
|
|
298 | 298 | <dependency> |
299 | 299 | <groupId>commons-io</groupId> |
300 | 300 | <artifactId>commons-io</artifactId> |
301 | | - <version>2.14.0</version> |
| 301 | + <version>2.15.1</version> |
302 | 302 | </dependency> |
303 | 303 |
|
304 | 304 | <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload --> |
|
326 | 326 | <dependency> |
327 | 327 | <groupId>org.apache.commons</groupId> |
328 | 328 | <artifactId>commons-lang3</artifactId> |
329 | | - <version>3.13.0</version> |
| 329 | + <version>3.14.0</version> |
330 | 330 | </dependency> |
331 | 331 |
|
332 | 332 | <dependency> |
|
348 | 348 | <dependency> |
349 | 349 | <groupId>com.fasterxml.jackson.core</groupId> |
350 | 350 | <artifactId>jackson-databind</artifactId> |
351 | | - <version>2.15.2</version> |
| 351 | + <version>2.16.1</version> |
352 | 352 | </dependency> |
353 | 353 |
|
354 | 354 | <dependency> |
|
368 | 368 | <dependency> |
369 | 369 | <groupId>org.apache.httpcomponents.client5</groupId> |
370 | 370 | <artifactId>httpclient5</artifactId> |
371 | | - <version>5.2.1</version> |
| 371 | + <version>5.3.1</version> |
372 | 372 | <scope>test</scope> |
373 | 373 | </dependency> |
374 | 374 |
|
375 | 375 | <dependency> |
376 | 376 | <groupId>org.apache.tika</groupId> |
377 | 377 | <artifactId>tika-core</artifactId> |
378 | | - <version>2.9.0</version> |
| 378 | + <version>2.9.1</version> |
379 | 379 | </dependency> |
380 | 380 | </dependencies> |
381 | 381 |
|
|
0 commit comments