Skip to content

Commit 265974d

Browse files
Merge pull request #360 from eclipse-basyx/development
Updates Version to 1.5.0
2 parents 81d0013 + ccb5a36 commit 265974d

File tree

82 files changed

+2072
-536
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+2072
-536
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
packages: write
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Set up JDK 11
2323
uses: actions/setup-java@v3
2424
with:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up JDK 11
1818
uses: actions/setup-java@v3
1919
with:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,5 @@ local.properties
7373

7474
.idea
7575
*.iml
76+
.moquette_uuid
77+
file_sme.json

pom.xml

Lines changed: 35 additions & 20 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.4.0</version>
8+
<version>1.5.0</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.2</spring-security-version>
49+
<spring-security-version>5.8.7</spring-security-version>
5050
</properties>
5151

5252
<repositories>
@@ -76,7 +76,7 @@
7676
<plugin>
7777
<groupId>org.apache.maven.plugins</groupId>
7878
<artifactId>maven-source-plugin</artifactId>
79-
<version>3.2.1</version>
79+
<version>3.3.0</version>
8080
<executions>
8181
<execution>
8282
<id>attach-sources</id>
@@ -110,7 +110,7 @@
110110
<plugin>
111111
<groupId>org.apache.maven.plugins</groupId>
112112
<artifactId>maven-surefire-plugin</artifactId>
113-
<version>3.0.0</version>
113+
<version>3.1.2</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.0.0</version>
129+
<version>3.1.2</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.5.0</version>
150+
<version>3.6.0</version>
151151
<configuration>
152152
<source>8</source>
153153
</configuration>
@@ -169,9 +169,17 @@
169169
<dependency>
170170
<groupId>ch.qos.logback</groupId>
171171
<artifactId>logback-classic</artifactId>
172-
<version>1.4.6</version>
172+
<version>1.4.11</version>
173+
<scope>runtime</scope>
173174
</dependency>
174175

176+
<dependency>
177+
<groupId>org.slf4j</groupId>
178+
<artifactId>slf4j-api</artifactId>
179+
<version>2.0.9</version>
180+
</dependency>
181+
182+
175183
<!-- JUnit 4 for running JUnit tests -->
176184
<dependency>
177185
<groupId>junit</groupId>
@@ -184,7 +192,7 @@
184192
<dependency>
185193
<groupId>org.mockito</groupId>
186194
<artifactId>mockito-core</artifactId>
187-
<version>5.2.0</version>
195+
<version>5.5.0</version>
188196
<scope>test</scope>
189197
</dependency>
190198

@@ -206,14 +214,14 @@
206214
<dependency>
207215
<groupId>org.eclipse.milo</groupId>
208216
<artifactId>sdk-client</artifactId>
209-
<version>0.6.8</version>
217+
<version>0.6.11</version>
210218
</dependency>
211219

212220
<!-- Eclipse Milo (for OPC-UA server) -->
213221
<dependency>
214222
<groupId>org.eclipse.milo</groupId>
215223
<artifactId>sdk-server</artifactId>
216-
<version>0.6.8</version>
224+
<version>0.6.11</version>
217225
</dependency>
218226

219227
<!-- Java Servlet API (for HTTP provider) -->
@@ -234,35 +242,42 @@
234242
<dependency>
235243
<groupId>org.glassfish.jersey.core</groupId>
236244
<artifactId>jersey-client</artifactId>
237-
<version>2.39.1</version>
245+
<version>2.40</version>
238246
</dependency>
239247

240248
<!-- Jersey InjectionManager (for Jersey client) -->
241249
<dependency>
242250
<groupId>org.glassfish.jersey.inject</groupId>
243251
<artifactId>jersey-hk2</artifactId>
244-
<version>2.39.1</version>
252+
<version>2.40</version>
245253
</dependency>
246254

247255
<!-- Tomcat 8 for HTTP server resource -->
248256
<dependency>
249257
<groupId>org.apache.tomcat</groupId>
250258
<artifactId>tomcat-catalina</artifactId>
251-
<version>9.0.73</version>
259+
<version>9.0.80</version>
252260
</dependency>
253261

254262
<!-- Used for creating .aasx files -->
255263
<dependency>
256264
<groupId>org.apache.poi</groupId>
257265
<artifactId>poi-ooxml</artifactId>
258-
<version>4.1.2</version>
266+
<version>5.2.3</version>
267+
</dependency>
268+
269+
<dependency>
270+
<groupId>org.apache.commons</groupId>
271+
<artifactId>commons-compress</artifactId>
272+
<version>1.24.0</version>
259273
</dependency>
260274

261275
<!-- Used by Logback to compile filter expressions from logback.xml -->
262276
<dependency>
263277
<groupId>org.codehaus.janino</groupId>
264278
<artifactId>janino</artifactId>
265-
<version>3.1.9</version>
279+
<version>3.1.10</version>
280+
<scope>runtime</scope>
266281
</dependency>
267282

268283
<!-- Paho Java Client for MQTT -->
@@ -283,7 +298,7 @@
283298
<dependency>
284299
<groupId>commons-io</groupId>
285300
<artifactId>commons-io</artifactId>
286-
<version>2.11.0</version>
301+
<version>2.14.0</version>
287302
</dependency>
288303

289304
<!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
@@ -311,7 +326,7 @@
311326
<dependency>
312327
<groupId>org.apache.commons</groupId>
313328
<artifactId>commons-lang3</artifactId>
314-
<version>3.12.0</version>
329+
<version>3.13.0</version>
315330
</dependency>
316331

317332
<dependency>
@@ -333,7 +348,7 @@
333348
<dependency>
334349
<groupId>com.fasterxml.jackson.core</groupId>
335350
<artifactId>jackson-databind</artifactId>
336-
<version>2.14.2</version>
351+
<version>2.15.2</version>
337352
</dependency>
338353

339354
<dependency>
@@ -360,7 +375,7 @@
360375
<dependency>
361376
<groupId>org.apache.tika</groupId>
362377
<artifactId>tika-core</artifactId>
363-
<version>2.7.0</version>
378+
<version>2.9.0</version>
364379
</dependency>
365380
</dependencies>
366381

@@ -396,7 +411,7 @@
396411
<plugin>
397412
<groupId>org.apache.maven.plugins</groupId>
398413
<artifactId>maven-gpg-plugin</artifactId>
399-
<version>3.0.1</version>
414+
<version>3.1.0</version>
400415
<executions>
401416
<execution>
402417
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)