Skip to content

Commit a3c990e

Browse files
Prepares 1.5.1 release (#424)
* Updates Version to 1.5.1 Signed-off-by: Frank Schnicke <[email protected]> * Updates Docker base image Signed-off-by: Frank Schnicke <[email protected]> --------- Signed-off-by: Frank Schnicke <[email protected]>
1 parent 04ee927 commit a3c990e

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

basyx.components/basyx.components.docker/basyx.components.AASServer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openjdk:11-slim-bullseye
1+
FROM amazoncorretto:17
22

33
# Install dependency for wait-for-it-env.sh & wget for health check
44
RUN apt update && apt install -y jq && apt clean

basyx.components/basyx.components.docker/basyx.components.AASServer/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.eclipse.basyx</groupId>
99
<artifactId>basyx.components.docker</artifactId>
10-
<version>1.5.1-SNAPSHOT</version>
10+
<version>1.5.1</version>
1111
</parent>
1212

1313
<artifactId>basyx.components.AASServer</artifactId>
@@ -121,7 +121,7 @@
121121
<dependency>
122122
<groupId>org.eclipse.basyx</groupId>
123123
<artifactId>basyx.components.registry</artifactId>
124-
<version>1.5.1-SNAPSHOT</version>
124+
<version>1.5.1</version>
125125
<scope>test</scope>
126126
</dependency>
127127
<dependency>

basyx.components/basyx.components.docker/basyx.components.AASServer/src/test/resources/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ BASYX_IMAGE_NAME=eclipsebasyx/aas-server
2828
# ##################
2929
# The image tag of the image that is build for this component
3030

31-
BASYX_IMAGE_TAG=1.5.1-SNAPSHOT
31+
BASYX_IMAGE_TAG=1.5.1
3232

3333
# ##################
3434
# Container Name

basyx.components/basyx.components.docker/basyx.components.registry/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openjdk:11-slim-bullseye
1+
FROM amazoncorretto:17
22

33
#Install wget for health check
44
RUN apt update && apt install -y wget && apt clean

basyx.components/basyx.components.docker/basyx.components.registry/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.basyx</groupId>
88
<artifactId>basyx.components.docker</artifactId>
9-
<version>1.5.1-SNAPSHOT</version>
9+
<version>1.5.1</version>
1010
</parent>
1111

1212
<artifactId>basyx.components.registry</artifactId>

basyx.components/basyx.components.docker/basyx.components.registry/src/test/resources/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ BASYX_IMAGE_NAME=eclipsebasyx/aas-registry
2828
# ##################
2929
# The image tag of the image that is build for this component
3030

31-
BASYX_IMAGE_TAG=1.5.1-SNAPSHOT
31+
BASYX_IMAGE_TAG=1.5.1
3232

3333
# ##################
3434
# Container Name

basyx.components/basyx.components.docker/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.eclipse.basyx</groupId>
99
<artifactId>basyx.components</artifactId>
10-
<version>1.5.1-SNAPSHOT</version>
10+
<version>1.5.1</version>
1111
</parent>
1212

1313
<artifactId>basyx.components.docker</artifactId>
@@ -223,7 +223,7 @@
223223
<dependency>
224224
<groupId>org.eclipse.basyx</groupId>
225225
<artifactId>basyx.components.lib</artifactId>
226-
<version>1.5.1-SNAPSHOT</version>
226+
<version>1.5.1</version>
227227
</dependency>
228228
</dependencies>
229229

basyx.components/basyx.components.lib/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.basyx</groupId>
88
<artifactId>basyx.components</artifactId>
9-
<version>1.5.1-SNAPSHOT</version>
9+
<version>1.5.1</version>
1010
</parent>
1111

1212
<artifactId>basyx.components.lib</artifactId>

basyx.components/pom.xml

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

66
<groupId>org.eclipse.basyx</groupId>
77
<artifactId>basyx.components</artifactId>
8-
<version>1.5.1-SNAPSHOT</version>
8+
<version>1.5.1</version>
99
<name>BaSyx Components</name>
1010
<description>BaSyx Off-the-Shelf Components</description>
1111
<url>https://www.eclipse.org/basyx/</url>
@@ -298,14 +298,14 @@
298298
<dependency>
299299
<groupId>org.eclipse.basyx</groupId>
300300
<artifactId>basyx.sdk</artifactId>
301-
<version>1.5.1-SNAPSHOT</version>
301+
<version>1.5.1</version>
302302
</dependency>
303303

304304
<!-- BaSyx SDK tests -->
305305
<dependency>
306306
<groupId>org.eclipse.basyx</groupId>
307307
<artifactId>basyx.sdk</artifactId>
308-
<version>1.5.1-SNAPSHOT</version>
308+
<version>1.5.1</version>
309309
<classifier>tests</classifier>
310310
<scope>test</scope>
311311
</dependency>

0 commit comments

Comments
 (0)