Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepares 1.5.1 release #424

Merged
merged 2 commits into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:11-slim-bullseye
FROM amazoncorretto:17

# Install dependency for wait-for-it-env.sh & wget for health check
RUN apt update && apt install -y jq && apt clean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.eclipse.basyx</groupId>
<artifactId>basyx.components.docker</artifactId>
<version>1.5.1-SNAPSHOT</version>
<version>1.5.1</version>
</parent>

<artifactId>basyx.components.AASServer</artifactId>
Expand Down Expand Up @@ -121,7 +121,7 @@
<dependency>
<groupId>org.eclipse.basyx</groupId>
<artifactId>basyx.components.registry</artifactId>
<version>1.5.1-SNAPSHOT</version>
<version>1.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ BASYX_IMAGE_NAME=eclipsebasyx/aas-server
# ##################
# The image tag of the image that is build for this component

BASYX_IMAGE_TAG=1.5.1-SNAPSHOT
BASYX_IMAGE_TAG=1.5.1

# ##################
# Container Name
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:11-slim-bullseye
FROM amazoncorretto:17

#Install wget for health check
RUN apt update && apt install -y wget && apt clean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.eclipse.basyx</groupId>
<artifactId>basyx.components.docker</artifactId>
<version>1.5.1-SNAPSHOT</version>
<version>1.5.1</version>
</parent>

<artifactId>basyx.components.registry</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ BASYX_IMAGE_NAME=eclipsebasyx/aas-registry
# ##################
# The image tag of the image that is build for this component

BASYX_IMAGE_TAG=1.5.1-SNAPSHOT
BASYX_IMAGE_TAG=1.5.1

# ##################
# Container Name
Expand Down
4 changes: 2 additions & 2 deletions basyx.components/basyx.components.docker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.eclipse.basyx</groupId>
<artifactId>basyx.components</artifactId>
<version>1.5.1-SNAPSHOT</version>
<version>1.5.1</version>
</parent>

<artifactId>basyx.components.docker</artifactId>
Expand Down Expand Up @@ -223,7 +223,7 @@
<dependency>
<groupId>org.eclipse.basyx</groupId>
<artifactId>basyx.components.lib</artifactId>
<version>1.5.1-SNAPSHOT</version>
<version>1.5.1</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion basyx.components/basyx.components.lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.eclipse.basyx</groupId>
<artifactId>basyx.components</artifactId>
<version>1.5.1-SNAPSHOT</version>
<version>1.5.1</version>
</parent>

<artifactId>basyx.components.lib</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions basyx.components/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.eclipse.basyx</groupId>
<artifactId>basyx.components</artifactId>
<version>1.5.1-SNAPSHOT</version>
<version>1.5.1</version>
<name>BaSyx Components</name>
<description>BaSyx Off-the-Shelf Components</description>
<url>https://www.eclipse.org/basyx/</url>
Expand Down Expand Up @@ -298,14 +298,14 @@
<dependency>
<groupId>org.eclipse.basyx</groupId>
<artifactId>basyx.sdk</artifactId>
<version>1.5.1-SNAPSHOT</version>
<version>1.5.1</version>
</dependency>

<!-- BaSyx SDK tests -->
<dependency>
<groupId>org.eclipse.basyx</groupId>
<artifactId>basyx.sdk</artifactId>
<version>1.5.1-SNAPSHOT</version>
<version>1.5.1</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
Expand Down