Skip to content

Commit d85a6d3

Browse files
Merge pull request #414 from eclipse-basyx/development
Update 1.5.1
2 parents d3cdea6 + c6bd0fd commit d85a6d3

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

.github/workflows/maven-publish-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222
- name: Set up JDK 11
23-
uses: actions/setup-java@v3
23+
uses: actions/setup-java@v4
2424
with:
2525
java-version: '11'
2626
distribution: 'adopt'

.github/workflows/maven-run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Set up JDK 11
18-
uses: actions/setup-java@v3
18+
uses: actions/setup-java@v4
1919
with:
2020
java-version: '11'
2121
distribution: 'adopt'

pom.xml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.eclipse.basyx</groupId>
77
<artifactId>basyx.sdk</artifactId>
8-
<version>1.5.0</version>
8+
<version>1.5.1</version>
99
<name>BaSyx SDK</name>
1010
<description>BaSyx Software Development Kit</description>
1111
<url>https://www.eclipse.org/basyx/</url>
@@ -46,7 +46,7 @@
4646
<properties>
4747
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4848
<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>
5050
</properties>
5151

5252
<repositories>
@@ -65,7 +65,7 @@
6565
<!-- Compile Sources using Java 11 -->
6666
<plugin>
6767
<artifactId>maven-compiler-plugin</artifactId>
68-
<version>3.11.0</version>
68+
<version>3.12.1</version>
6969
<configuration>
7070
<source>11</source>
7171
<target>11</target>
@@ -110,7 +110,7 @@
110110
<plugin>
111111
<groupId>org.apache.maven.plugins</groupId>
112112
<artifactId>maven-surefire-plugin</artifactId>
113-
<version>3.1.2</version>
113+
<version>3.2.5</version>
114114
<configuration>
115115
<excludes>
116116
<exclude>**/*HTTP*</exclude>
@@ -126,7 +126,7 @@
126126
<plugin>
127127
<groupId>org.apache.maven.plugins</groupId>
128128
<artifactId>maven-failsafe-plugin</artifactId>
129-
<version>3.1.2</version>
129+
<version>3.2.5</version>
130130
<configuration>
131131
<includes>
132132
<include>**/*HTTP*</include>
@@ -147,7 +147,7 @@
147147
<plugin>
148148
<groupId>org.apache.maven.plugins</groupId>
149149
<artifactId>maven-javadoc-plugin</artifactId>
150-
<version>3.6.0</version>
150+
<version>3.6.3</version>
151151
<configuration>
152152
<source>8</source>
153153
</configuration>
@@ -169,14 +169,14 @@
169169
<dependency>
170170
<groupId>ch.qos.logback</groupId>
171171
<artifactId>logback-classic</artifactId>
172-
<version>1.4.12</version>
172+
<version>1.4.14</version>
173173
<scope>runtime</scope>
174174
</dependency>
175175

176176
<dependency>
177177
<groupId>org.slf4j</groupId>
178178
<artifactId>slf4j-api</artifactId>
179-
<version>2.0.9</version>
179+
<version>2.0.11</version>
180180
</dependency>
181181

182182

@@ -192,7 +192,7 @@
192192
<dependency>
193193
<groupId>org.mockito</groupId>
194194
<artifactId>mockito-core</artifactId>
195-
<version>5.5.0</version>
195+
<version>5.10.0</version>
196196
<scope>test</scope>
197197
</dependency>
198198

@@ -214,14 +214,14 @@
214214
<dependency>
215215
<groupId>org.eclipse.milo</groupId>
216216
<artifactId>sdk-client</artifactId>
217-
<version>0.6.11</version>
217+
<version>0.6.12</version>
218218
</dependency>
219219

220220
<!-- Eclipse Milo (for OPC-UA server) -->
221221
<dependency>
222222
<groupId>org.eclipse.milo</groupId>
223223
<artifactId>sdk-server</artifactId>
224-
<version>0.6.11</version>
224+
<version>0.6.12</version>
225225
</dependency>
226226

227227
<!-- Java Servlet API (for HTTP provider) -->
@@ -242,21 +242,21 @@
242242
<dependency>
243243
<groupId>org.glassfish.jersey.core</groupId>
244244
<artifactId>jersey-client</artifactId>
245-
<version>2.40</version>
245+
<version>2.41</version>
246246
</dependency>
247247

248248
<!-- Jersey InjectionManager (for Jersey client) -->
249249
<dependency>
250250
<groupId>org.glassfish.jersey.inject</groupId>
251251
<artifactId>jersey-hk2</artifactId>
252-
<version>2.40</version>
252+
<version>2.41</version>
253253
</dependency>
254254

255255
<!-- Tomcat 8 for HTTP server resource -->
256256
<dependency>
257257
<groupId>org.apache.tomcat</groupId>
258258
<artifactId>tomcat-catalina</artifactId>
259-
<version>9.0.83</version>
259+
<version>9.0.85</version>
260260
</dependency>
261261

262262
<!-- Used for creating .aasx files -->
@@ -269,14 +269,14 @@
269269
<dependency>
270270
<groupId>org.apache.commons</groupId>
271271
<artifactId>commons-compress</artifactId>
272-
<version>1.24.0</version>
272+
<version>1.25.0</version>
273273
</dependency>
274274

275275
<!-- Used by Logback to compile filter expressions from logback.xml -->
276276
<dependency>
277277
<groupId>org.codehaus.janino</groupId>
278278
<artifactId>janino</artifactId>
279-
<version>3.1.10</version>
279+
<version>3.1.11</version>
280280
<scope>runtime</scope>
281281
</dependency>
282282

@@ -298,7 +298,7 @@
298298
<dependency>
299299
<groupId>commons-io</groupId>
300300
<artifactId>commons-io</artifactId>
301-
<version>2.14.0</version>
301+
<version>2.15.1</version>
302302
</dependency>
303303

304304
<!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
@@ -326,7 +326,7 @@
326326
<dependency>
327327
<groupId>org.apache.commons</groupId>
328328
<artifactId>commons-lang3</artifactId>
329-
<version>3.13.0</version>
329+
<version>3.14.0</version>
330330
</dependency>
331331

332332
<dependency>
@@ -348,7 +348,7 @@
348348
<dependency>
349349
<groupId>com.fasterxml.jackson.core</groupId>
350350
<artifactId>jackson-databind</artifactId>
351-
<version>2.15.2</version>
351+
<version>2.16.1</version>
352352
</dependency>
353353

354354
<dependency>
@@ -368,14 +368,14 @@
368368
<dependency>
369369
<groupId>org.apache.httpcomponents.client5</groupId>
370370
<artifactId>httpclient5</artifactId>
371-
<version>5.2.1</version>
371+
<version>5.3.1</version>
372372
<scope>test</scope>
373373
</dependency>
374374

375375
<dependency>
376376
<groupId>org.apache.tika</groupId>
377377
<artifactId>tika-core</artifactId>
378-
<version>2.9.0</version>
378+
<version>2.9.1</version>
379379
</dependency>
380380
</dependencies>
381381

0 commit comments

Comments
 (0)