diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5363fb5..acfd769 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -142,7 +142,7 @@ jobs:
type=semver,pattern={{version}}
type=semver,pattern={{major}}
type=semver,pattern={{major}}.{{minor}}
- type=raw,value=1.12.19-SNAPSHOT,enable=${{ github.event.inputs.deploy_docker == 'true' || github.ref == format('refs/heads/{0}', 'main') }}
+ type=raw,value=1.12.19,enable=${{ github.event.inputs.deploy_docker == 'true' || github.ref == format('refs/heads/{0}', 'main') }}
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
- name: Agent Plane Hashicorp Container Build and push
@@ -180,7 +180,7 @@ jobs:
type=semver,pattern={{version}}
type=semver,pattern={{major}}
type=semver,pattern={{major}}.{{minor}}
- type=raw,value=1.12.19-SNAPSHOT,enable=${{ github.event.inputs.deploy_docker == 'true' || github.ref == format('refs/heads/{0}', 'main') }}
+ type=raw,value=1.12.19,enable=${{ github.event.inputs.deploy_docker == 'true' || github.ref == format('refs/heads/{0}', 'main') }}
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
- name: Agent Plane Azure Vault Container Build and push
diff --git a/DEPENDENCIES b/DEPENDENCIES
index 932603b..0ab957d 100644
--- a/DEPENDENCIES
+++ b/DEPENDENCIES
@@ -264,8 +264,8 @@ maven/mavencentral/org.eclipse.jetty/jetty-servlet/11.0.20, EPL-2.0 OR Apache-2.
maven/mavencentral/org.eclipse.jetty/jetty-util/11.0.20, EPL-2.0 OR Apache-2.0, approved, rt.jetty
maven/mavencentral/org.eclipse.jetty/jetty-webapp/11.0.20, EPL-2.0 OR Apache-2.0, approved, rt.jetty
maven/mavencentral/org.eclipse.jetty/jetty-xml/11.0.20, EPL-2.0 OR Apache-2.0, approved, rt.jetty
-maven/mavencentral/org.eclipse.tractusx.agents.edc.agent-plane/agent-plane-protocol/1.12.19-SNAPSHOT, Apache-2.0, approved, automotive.tractusx
-maven/mavencentral/org.eclipse.tractusx.edc/auth-jwt/1.12.19-SNAPSHOT, Apache-2.0, approved, automotive.tractusx
+maven/mavencentral/org.eclipse.tractusx.agents.edc.agent-plane/agent-plane-protocol/1.12.19, Apache-2.0, approved, automotive.tractusx
+maven/mavencentral/org.eclipse.tractusx.edc/auth-jwt/1.12.19, Apache-2.0, approved, automotive.tractusx
maven/mavencentral/org.eclipse.tractusx.edc/core-spi/0.7.0, Apache-2.0, approved, automotive.tractusx
maven/mavencentral/org.eclipse.tractusx.edc/core-utils/0.7.0, Apache-2.0, approved, automotive.tractusx
maven/mavencentral/org.eclipse.tractusx.edc/data-plane-migration/0.7.0, Apache-2.0, approved, automotive.tractusx
diff --git a/README.md b/README.md
index 8895dce..d6ae0e2 100644
--- a/README.md
+++ b/README.md
@@ -120,8 +120,8 @@ kubectl wait --namespace ingress-nginx \
--selector=app.kubernetes.io/component=controller \
--timeout=90s
# transfer images
-kind load docker-image docker.io/tractusx/agentplane-hashicorp:1.12.19-SNAPSHOT --name ka
-kind load docker-image docker.io/tractusx/agentplane-azure-vault:1.12.19-SNAPSHOT --name ka
+kind load docker-image docker.io/tractusx/agentplane-hashicorp:1.12.19 --name ka
+kind load docker-image docker.io/tractusx/agentplane-azure-vault:1.12.19 --name ka
# run chart testing
ct install --charts charts/agent-plane
ct install --charts charts/agent-plane-azure-vault
diff --git a/agent-plane/README.md b/agent-plane/README.md
index 92abdc4..b7549c5 100644
--- a/agent-plane/README.md
+++ b/agent-plane/README.md
@@ -66,10 +66,10 @@ mvn package -Pwith-docker-image
Alternatively, after a successful build, you can invoke docker yourself
```console
-docker build -t tractusx/agentplane-azure-vault:1.12.19-SNAPSHOT -f agentplane-azure-vault/src/main/docker/Dockerfile .
+docker build -t tractusx/agentplane-azure-vault:1.12.19 -f agentplane-azure-vault/src/main/docker/Dockerfile .
```
```console
-docker build -t tractusx/agentplane-hashicorp:1.12.19-SNAPSHOT -f agentplane-hashicorp/src/main/docker/Dockerfile .
+docker build -t tractusx/agentplane-hashicorp:1.12.19 -f agentplane-hashicorp/src/main/docker/Dockerfile .
```
diff --git a/agent-plane/agent-plane-protocol/README.md b/agent-plane/agent-plane-protocol/README.md
index a6e3489..5406bf1 100644
--- a/agent-plane/agent-plane-protocol/README.md
+++ b/agent-plane/agent-plane-protocol/README.md
@@ -64,7 +64,7 @@ Add the following dependency to your data-plane artifact pom:
org.eclipse.tractusx.agents.edc
agent-plane-protocol
- 1.12.19-SNAPSHOT
+ 1.12.19
```
diff --git a/agent-plane/agent-plane-protocol/pom.xml b/agent-plane/agent-plane-protocol/pom.xml
index 5989490..7660a60 100644
--- a/agent-plane/agent-plane-protocol/pom.xml
+++ b/agent-plane/agent-plane-protocol/pom.xml
@@ -25,7 +25,7 @@
org.eclipse.tractusx.agents.edc
agent-plane
- 1.12.19-SNAPSHOT
+ 1.12.19
../pom.xml
diff --git a/agent-plane/agent-plane-protocol/src/test/java/org/eclipse/tractusx/agents/edc/service/TestDataspaceSynchronizer.java b/agent-plane/agent-plane-protocol/src/test/java/org/eclipse/tractusx/agents/edc/service/TestDataspaceSynchronizer.java
index e415327..836ec5c 100644
--- a/agent-plane/agent-plane-protocol/src/test/java/org/eclipse/tractusx/agents/edc/service/TestDataspaceSynchronizer.java
+++ b/agent-plane/agent-plane-protocol/src/test/java/org/eclipse/tractusx/agents/edc/service/TestDataspaceSynchronizer.java
@@ -123,7 +123,7 @@ private static JsonObjectBuilder createOffer() {
JsonObjectBuilder offerBuilder = Json.createObjectBuilder()
.add("@id", "cx-taxo:GraphAsset?test=ExampleAsset")
.add("https://w3id.org/edc/v0.0.1/ns/contenttype", "application/json, application/xml")
- .add("https://w3id.org/catenax/ontology/common#version", "1.12.19-SNAPSHOT")
+ .add("https://w3id.org/catenax/ontology/common#version", "1.12.19")
.add("https://w3id.org/catenax/ontology/common#name", "Test Asset")
.add("https://w3id.org/catenax/ontology/common#description", "Test Asset for RDF Representation")
.add("https://w3id.org/catenax/ontology/common#description@de", "Beispiel Asset für RDF Darstellung")
@@ -212,7 +212,7 @@ public void testCatalogDeserialization() {
" },\n" +
" \"dcat:accessService\": \"ddd4b79e-f785-4e71-9fe5-4a177b3ccf54\"\n" +
" },\n" +
- " \"edc:version\": \"1.12.19-SNAPSHOT\",\n" +
+ " \"edc:version\": \"1.12.19\",\n" +
" \"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\": \"\",\n" +
" \"edc:name\": \"Diagnostic Trouble Code Catalogue Version 2022\",\n" +
" \"http://www.w3.org/ns/shacl#shapesGraph\": \"@prefix cx-common: . \\n@prefix : .\\n@prefix cx-diag: .\\n@prefix owl: .\\n@prefix rdf: .\\n@prefix xsd: .\\n@prefix sh: .\\n\\n:OemDTC rdf:type sh:NodeShape ;\\n sh:targetClass cx-diag:DTC ;\\n sh:property [\\n sh:path cx-diag:provisionedBy ;\\n sh:hasValue ;\\n ] ;\\n sh:property [\\n sh:path cx-diag:version ;\\n sh:hasValue \\\"0\\\"^^xsd:long ;\\n ] ;\\n sh:property [\\n sh:path cx-diag:affects ;\\n sh:class :OemDiagnosedParts ;\\n ].\\n\\n:OemDiagnosedParts rdf:type sh:NodeShape ;\\n sh:targetClass cx-diag:DiagnosedPart ;\\n sh:property [\\n sh:path cx-diag:provisionedBy ;\\n sh:hasValue ;\\n ] .\\n\",\n" +
diff --git a/agent-plane/agentplane-azure-vault/README.md b/agent-plane/agentplane-azure-vault/README.md
index 782b606..b87efe2 100644
--- a/agent-plane/agentplane-azure-vault/README.md
+++ b/agent-plane/agentplane-azure-vault/README.md
@@ -54,7 +54,7 @@ mvn -s ../../../settings.xml install -Pwith-docker-image
Alternatively, after a sucessful [build](#building) the docker image of the Agent Plane is created using
```console
-docker build -t tractusx//agentplane-azure-vault:1.12.19-SNAPSHOT -f src/main/docker/Dockerfile .
+docker build -t tractusx//agentplane-azure-vault:1.12.19 -f src/main/docker/Dockerfile .
```
To run the docker image, you could invoke this command
diff --git a/agent-plane/agentplane-azure-vault/pom.xml b/agent-plane/agentplane-azure-vault/pom.xml
index e22f9e9..edc7e9d 100644
--- a/agent-plane/agentplane-azure-vault/pom.xml
+++ b/agent-plane/agentplane-azure-vault/pom.xml
@@ -25,7 +25,7 @@
org.eclipse.tractusx.agents.edc
agent-plane
- 1.12.19-SNAPSHOT
+ 1.12.19
../pom.xml
diff --git a/agent-plane/agentplane-hashicorp/README.md b/agent-plane/agentplane-hashicorp/README.md
index 8d7a3e6..98d5ef2 100644
--- a/agent-plane/agentplane-hashicorp/README.md
+++ b/agent-plane/agentplane-hashicorp/README.md
@@ -54,7 +54,7 @@ mvn -s ../../../settings.xml install -Pwith-docker-image
Alternatively, after a sucessful [build](#building) the docker image of the Agent Plane is created using
```console
-docker build -t tractusx/agentplane-hashicorp:1.12.19-SNAPSHOT -f src/main/docker/Dockerfile .
+docker build -t tractusx/agentplane-hashicorp:1.12.19 -f src/main/docker/Dockerfile .
```
To run the docker image, you could invoke this command
@@ -66,7 +66,7 @@ docker run -p 8082:8082 \
-v $(pwd)/resources/dataplane.properties:/app/configuration.properties \
-v $(pwd)/resources/opentelemetry.properties:/app/opentelemetry.properties \
-v $(pwd)/resources/logging.properties:/app/logging.properties \
- tractusx/agentplane-hashicorp:1.12.19-SNAPSHOT
+ tractusx/agentplane-hashicorp:1.12.19
````
Afterwards, you should be able to access the [local SparQL endpoint](http://localhost:8082/api/agent) via
diff --git a/agent-plane/agentplane-hashicorp/pom.xml b/agent-plane/agentplane-hashicorp/pom.xml
index 5d77f23..040a771 100644
--- a/agent-plane/agentplane-hashicorp/pom.xml
+++ b/agent-plane/agentplane-hashicorp/pom.xml
@@ -25,7 +25,7 @@
org.eclipse.tractusx.agents.edc
agent-plane
- 1.12.19-SNAPSHOT
+ 1.12.19
../pom.xml
diff --git a/agent-plane/pom.xml b/agent-plane/pom.xml
index 8990321..145d6ea 100644
--- a/agent-plane/pom.xml
+++ b/agent-plane/pom.xml
@@ -28,7 +28,7 @@
org.eclipse.tractusx.agents
edc
- 1.12.19-SNAPSHOT
+ 1.12.19
../pom.xml
Tractus-X EDC Agent Plane
diff --git a/charts/agent-plane-azure-vault/Chart.yaml b/charts/agent-plane-azure-vault/Chart.yaml
index b979c33..825797d 100644
--- a/charts/agent-plane-azure-vault/Chart.yaml
+++ b/charts/agent-plane-azure-vault/Chart.yaml
@@ -41,12 +41,12 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
-version: 1.12.19-SNAPSHOT
+version: 1.12.19
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
-appVersion: "1.12.19-SNAPSHOT"
+appVersion: "1.12.19"
home: https://github.com/eclipse-tractusx/knowledge-agents-edc/
sources:
- https://github.com/eclipse-tractusx/knowledge-agents-edc/tree/main/charts/agent-connector
diff --git a/charts/agent-plane-azure-vault/README.md b/charts/agent-plane-azure-vault/README.md
index 085d651..2a4aca7 100644
--- a/charts/agent-plane-azure-vault/README.md
+++ b/charts/agent-plane-azure-vault/README.md
@@ -21,7 +21,7 @@
# agent-plane-azure-vault
-![Version: 1.12.19-SNAPSHOT](https://img.shields.io/badge/Version-1.12.19--SNAPSHOT-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.12.19-SNAPSHOT](https://img.shields.io/badge/AppVersion-1.12.19--SNAPSHOT-informational?style=flat-square)
+![Version: 1.12.19](https://img.shields.io/badge/Version-1.12.19--SNAPSHOT-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.12.19](https://img.shields.io/badge/AppVersion-1.12.19--SNAPSHOT-informational?style=flat-square)
A Helm chart for an Agent-Enabled Tractus-X Data Plane which registers at a running
Control Plane.
@@ -59,7 +59,7 @@ Combined, run this shell command to start the in-memory Tractus-X EDC runtime:
```shell
helm repo add eclipse-tractusx https://eclipse-tractusx.github.io/charts/dev
-helm install my-release eclipse-tractusx/agent-plane --version 1.12.19-SNAPSHOT
+helm install my-release eclipse-tractusx/agent-plane --version 1.12.19
```
## Maintainers
diff --git a/charts/agent-plane-azure-vault/ci/integration-values.yaml b/charts/agent-plane-azure-vault/ci/integration-values.yaml
index 4e733ad..7eee27b 100644
--- a/charts/agent-plane-azure-vault/ci/integration-values.yaml
+++ b/charts/agent-plane-azure-vault/ci/integration-values.yaml
@@ -29,7 +29,7 @@ participant:
# image:
# repository: ghcr.io/catenax-ng/tx-knowledge-agents-edc/agentplane-azure-vault
-# tag: 1.12.19-SNAPSHOT
+# tag: 1.12.19
controlplane:
endpoints:
diff --git a/charts/agent-plane/Chart.yaml b/charts/agent-plane/Chart.yaml
index 45d82be..a548662 100644
--- a/charts/agent-plane/Chart.yaml
+++ b/charts/agent-plane/Chart.yaml
@@ -41,12 +41,12 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
-version: 1.12.19-SNAPSHOT
+version: 1.12.19
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
-appVersion: "1.12.19-SNAPSHOT"
+appVersion: "1.12.19"
home: https://github.com/eclipse-tractusx/knowledge-agents-edc/
sources:
- https://github.com/eclipse-tractusx/knowledge-agents-edc/tree/main/charts/agent-connector
diff --git a/charts/agent-plane/README.md b/charts/agent-plane/README.md
index 69e0e56..07280e8 100644
--- a/charts/agent-plane/README.md
+++ b/charts/agent-plane/README.md
@@ -21,7 +21,7 @@
# agent-plane
-![Version: 1.12.19-SNAPSHOT](https://img.shields.io/badge/Version-1.12.19--SNAPSHOT-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.12.19-SNAPSHOT](https://img.shields.io/badge/AppVersion-1.12.19--SNAPSHOT-informational?style=flat-square)
+![Version: 1.12.19](https://img.shields.io/badge/Version-1.12.19--SNAPSHOT-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.12.19](https://img.shields.io/badge/AppVersion-1.12.19--SNAPSHOT-informational?style=flat-square)
A Helm chart for an Agent-Enabled Tractus-X Data Plane which registers at a running
Control Plane.
@@ -59,7 +59,7 @@ Combined, run this shell command to start the in-memory Tractus-X EDC runtime:
```shell
helm repo add eclipse-tractusx https://eclipse-tractusx.github.io/charts/dev
-helm install my-release eclipse-tractusx/agent-plane --version 1.12.19-SNAPSHOT
+helm install my-release eclipse-tractusx/agent-plane --version 1.12.19
```
## Maintainers
diff --git a/charts/agent-plane/ci/integration-values.yaml b/charts/agent-plane/ci/integration-values.yaml
index 55de37f..b369ddb 100644
--- a/charts/agent-plane/ci/integration-values.yaml
+++ b/charts/agent-plane/ci/integration-values.yaml
@@ -29,7 +29,7 @@ participant:
# image:
# repository: ghcr.io/catenax-ng/tx-knowledge-agents-edc/agentplane-hashicorp
-# tag: 1.12.19-SNAPSHOT
+# tag: 1.12.19
controlplane:
endpoints:
diff --git a/common/README.md b/common/README.md
index d22c524..045f367 100644
--- a/common/README.md
+++ b/common/README.md
@@ -57,7 +57,7 @@ add the following dependency to your maven dependencies (gradle should work anal
org.eclipse.tractusx.edc
auth-jwt
- 1.12.19-SNAPSHOT
+ 1.12.19
diff --git a/common/auth-jwt/README.md b/common/auth-jwt/README.md
index e62de9a..4eff73b 100644
--- a/common/auth-jwt/README.md
+++ b/common/auth-jwt/README.md
@@ -37,7 +37,7 @@ Add the following dependency to your EDC artifact pom:
org.eclipse.tractusx.agents.edc
auth-jwt
- 1.12.19-SNAPSHOT
+ 1.12.19
```
diff --git a/common/auth-jwt/pom.xml b/common/auth-jwt/pom.xml
index 6a95c4a..de9a9b8 100644
--- a/common/auth-jwt/pom.xml
+++ b/common/auth-jwt/pom.xml
@@ -27,7 +27,7 @@
org.eclipse.tractusx.agents
edc
- 1.12.19-SNAPSHOT
+ 1.12.19
../../pom.xml
diff --git a/docs/README.md b/docs/README.md
index bb42cdb..f3681c7 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -75,7 +75,7 @@ dependencies:
alias: my-connector
- name: agent-plane
repository: https://eclipse-tractusx.github.io/charts/dev
- version: 1.12.19-SNAPSHOT
+ version: 1.12.19
alias: my-agent
```
@@ -90,7 +90,7 @@ dependencies:
alias: my-connector
- name: agent-plane-azure-vault
repository: https://eclipse-tractusx.github.io/charts/dev
- version: 1.12.19-SNAPSHOT
+ version: 1.12.19
alias: my-agent
```
diff --git a/pom.xml b/pom.xml
index 5c76fd0..41c3dbc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
4.0.0
org.eclipse.tractusx.agents
edc
- 1.12.19-SNAPSHOT
+ 1.12.19
pom
Tractus-X Knowledge Agents EDC Extensions
EDC-Related Artifacts for Federated Procedure Calls
diff --git a/upgrade_version.sh b/upgrade_version.sh
index a432f54..a48d281 100755
--- a/upgrade_version.sh
+++ b/upgrade_version.sh
@@ -16,7 +16,7 @@
#
# SPDX-License-Identifier: Apache-2.0
-OLD_VERSION=1.12.19-SNAPSHOT
+OLD_VERSION=1.12.19
echo Upgrading from $OLD_VERSION to $1
PATTERN=s/$OLD_VERSION/$1/g
LC_ALL=C