Skip to content

Commit

Permalink
fix(dep): fix version catalogs and module dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed Apr 5, 2024
1 parent 9727773 commit 6918069
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion extensions/common/gcp/gcp-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
api(libs.edc.spi.core)
api(libs.edc.spi.dataplane)
api(libs.edc.spi.transfer)
api(libs.edc.util)
api(libs.edc.lib.util)
implementation(libs.edc.spi.validator)


Expand Down
2 changes: 1 addition & 1 deletion extensions/common/vault/vault-gcp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {

dependencies {
api(libs.edc.spi.core)
implementation(libs.edc.util)
implementation(libs.edc.lib.util)

implementation(project(":extensions:common:gcp:gcp-core"))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {

dependencies {
api(libs.edc.spi.core)
implementation(libs.edc.util)
implementation(libs.edc.lib.util)
implementation(libs.failsafe.core)

implementation(project(":extensions:common:gcp:gcp-core"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {

dependencies {
api(libs.edc.spi.core)
implementation(libs.edc.util)
implementation(libs.edc.lib.util)
implementation(libs.failsafe.core)

implementation(project(":extensions:common:gcp:gcp-core"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
dependencies {
api(libs.edc.spi.dataplane)
api(libs.edc.core.dataplane.util)
implementation(libs.edc.util)
implementation(libs.edc.lib.util)
implementation(libs.edc.spi.validator)

implementation(project(":extensions:common:gcp:gcp-core"))
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
format.version = "1.1"

[versions]
edc = "0.6.1-SNAPSHOT"
edc = "0.6.1-foo"
failsafe = "3.3.1"
googleCloudBom = "26.33.0"
googleApisIam = "v2-rev20240108-2.0.0"
Expand All @@ -24,7 +24,7 @@ edc-spi-transfer = { module = "org.eclipse.edc:transfer-spi", version.ref = "edc
edc-spi-web = { module = "org.eclipse.edc:web-spi", version.ref = "edc" }
edc-spi-validator = { module = "org.eclipse.edc:validator-spi", version.ref = "edc" }
edc-transfer-httppull-receiver-dynamic = { module = "org.eclipse.edc:transfer-pull-http-dynamic-receiver", version.ref = "edc" }
edc-util = { module = "org.eclipse.edc:util", version.ref = "edc" }
edc-lib-util = { module = "org.eclipse.edc:util-lib", version.ref = "edc" }

# third-party dependencies
failsafe-core = { module = "dev.failsafe:failsafe", version.ref = "failsafe" }
Expand Down

0 comments on commit 6918069

Please sign in to comment.