Skip to content

Commit 416ffff

Browse files
committed
chore: update for edc 0.15.1 and tx 0.12.0
1 parent 3789616 commit 416ffff

4 files changed

Lines changed: 21 additions & 23 deletions

File tree

edc-controlplane/edc-controlplane-construct-x/con-x-controlplane-postgresql-hashicorp-vault/build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,17 @@ plugins {
2626
}
2727

2828
dependencies {
29-
val edcVersion = "0.14.1"
30-
val txVersion = "0.11.2"
29+
val edcVersion = "0.15.1"
30+
val txVersion = "0.12.0"
3131
implementation("org.eclipse.edc:controlplane-dcp-bom:$edcVersion")
3232
implementation("org.eclipse.edc:controlplane-feature-sql-bom:$edcVersion")
3333

3434
implementation("org.eclipse.edc:vault-hashicorp:$edcVersion")
35+
3536
implementation("org.eclipse.tractusx.edc:agreements:$txVersion")
3637
implementation("org.eclipse.tractusx.edc:retirement-evaluation-store-sql:$txVersion")
3738
implementation("org.eclipse.tractusx.edc:control-plane-migration:$txVersion")
38-
implementation("org.eclipse.tractusx.edc:tx-dcp:${txVersion}")
39+
implementation("org.eclipse.tractusx.edc:tx-dcp:$txVersion")
3940
}
4041

4142
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {

edc-controlplane/edc-controlplane-construct-x/local/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ It will start the following containers on your local machine:
1717

1818
Before anything else, please make sure you have the docker images for con-x-controlplane-postgresql-hashicorp-vault in your local docker repository, see [here](../con-x-controlplane-postgresql-hashicorp-vault/README.md) and [here](../../../edc-dataplane/edc-dataplane-construct-x/con-x-dataplane-postgresql-hashicorp-vault/README.md).
1919

20-
Beyond that, you need to obtain the docker images needed to run the identity hub and the issuer services. In order to do so, please checckout this [repository](https://github.com/FraunhoferISST/dev-identity-services) and clone it onto your local machine. The upper section of this [README](https://github.com/FraunhoferISST/dev-identity-services/blob/main/runtimes/dev/README.md) informs
20+
Beyond that, you need to obtain the docker images needed to run the identity hub and the issuer services. In order to do so, please check out this [repository](https://github.com/FraunhoferISST/dev-identity-services) and clone it onto your local machine. The upper section of this [README](https://github.com/FraunhoferISST/dev-identity-services/blob/main/runtimes/dev/README.md) informs
2121
you about the steps necessary to create the docker images.
2222

2323

edc-controlplane/edc-controlplane-construct-x/local/docker-compose.yaml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ services:
6565
shared-postgres:
6666
container_name: shared-postgres
6767
image: postgres:16.4-alpine
68-
pull_policy: if_not_present
6968
environment:
7069
- POSTGRES_USER=admin
7170
- POSTGRES_PASSWORD=password
@@ -82,7 +81,6 @@ services:
8281
shared-vault:
8382
container_name: shared-vault
8483
image: vault:1.13.3
85-
pull_policy: if_not_present
8684
command: server -dev -dev-root-token-id=vaultsecret0123456789 -dev-listen-address=0.0.0.0:8200
8785
environment:
8886
VAULT_ADDR: http://0.0.0.0:8200
@@ -101,7 +99,6 @@ services:
10199
vault-init:
102100
container_name: vault-init
103101
image: alpine:3.19
104-
pull_policy: if_not_present
105102
depends_on:
106103
shared-vault:
107104
condition: service_healthy
@@ -243,8 +240,8 @@ services:
243240
depends_on:
244241
shared-postgres:
245242
condition: service_healthy
246-
shared-vault:
247-
condition: service_healthy
243+
vault-init:
244+
condition: service_completed_successfully
248245
entrypoint: [ "java", "-jar", "edc-runtime.jar", "--log-level=DEBUG" ]
249246
ports:
250247
- "5005:5005" # Debugger
@@ -288,8 +285,8 @@ services:
288285
depends_on:
289286
shared-postgres:
290287
condition: service_healthy
291-
shared-vault:
292-
condition: service_healthy
288+
vault-init:
289+
condition: service_completed_successfully
293290
entrypoint: [ "java", "-jar", "edc-runtime.jar", "--log-level=DEBUG" ]
294291
ports:
295292
- "5008:5005" # Debugger
@@ -347,22 +344,21 @@ services:
347344
depends_on:
348345
shared-postgres:
349346
condition: service_healthy
350-
shared-vault:
351-
condition: service_healthy
347+
vault-init:
348+
condition: service_completed_successfully
352349
entrypoint: [ "java", "-jar", "edc-runtime.jar", "--log-level=DEBUG" ]
353350
ports:
354351
- "5006:5005" # Debugger
355352
- "39000:9000" # Default port
356353
- "39010:9010" # Management API
357354
- "39020:9020" # DSP API
358-
359355
networks:
360356
- con-x-test-network
361357

362358
provider-dataplane:
363359
container_name: provider-dataplane
364360
image: con-x-dataplane-postgresql-hashicorp-vault:latest
365-
pull_policy: if_not_present
361+
pull_policy: never
366362
environment:
367363
- JAVA_TOOL_OPTIONS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=0.0.0.0:5005
368364
- web.http.public.port=9500
@@ -390,12 +386,11 @@ services:
390386
- edc.iam.sts.oauth.token.url=http://provider-idhub:9292/api/sts/token
391387
- edc.iam.sts.oauth.client.id=did:web:provider-idhub:user:provider
392388
- edc.iam.issuer.id=did:web:provider-idhub:user:provider
393-
394389
depends_on:
395390
shared-postgres:
396391
condition: service_healthy
397-
shared-vault:
398-
condition: service_healthy
392+
vault-init:
393+
condition: service_completed_successfully
399394
entrypoint: [ "java", "-jar", "edc-runtime.jar", "--log-level=DEBUG" ]
400395
ports:
401396
- "5007:5005" # Debugger

edc-dataplane/edc-dataplane-construct-x/con-x-dataplane-postgresql-hashicorp-vault/build.gradle.kts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,16 @@ configurations.all {
3030
}
3131

3232
dependencies {
33-
val edcVersion = "0.14.1"
34-
val txVersion = "0.11.2"
33+
val edcVersion = "0.15.1"
34+
val txVersion = "0.12.0"
3535
implementation("org.eclipse.edc:dataplane-base-bom:$edcVersion")
36-
implementation("org.eclipse.edc:dataplane-feature-sql-bom:${edcVersion}")
37-
implementation("org.eclipse.edc:vault-hashicorp:${edcVersion}")
36+
implementation("org.eclipse.edc:dataplane-feature-sql-bom:$edcVersion")
37+
implementation("org.eclipse.edc:vault-hashicorp:$edcVersion")
38+
39+
implementation("org.eclipse.edc:participant-context-config-core:${edcVersion}")
3840

3941
implementation("org.eclipse.tractusx.edc:dataplane-public-api-v2:$txVersion")
40-
implementation("org.eclipse.tractusx.edc:dataplane-util:${txVersion}")
42+
implementation("org.eclipse.tractusx.edc:dataplane-util:$txVersion")
4143
}
4244

4345

0 commit comments

Comments
 (0)