Skip to content

Commit

Permalink
build: fix dependency scope for libs.edc.junit (#1463)
Browse files Browse the repository at this point in the history
* build: fix dependency scope for libs.edc.junit

* dependencies
  • Loading branch information
ndr-brt authored Jul 25, 2024
1 parent f0e2d91 commit 68575ad
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,6 @@ maven/mavencentral/net.bytebuddy/byte-buddy-agent/1.14.1, Apache-2.0, approved,
maven/mavencentral/net.bytebuddy/byte-buddy-agent/1.14.15, Apache-2.0, approved, #7164
maven/mavencentral/net.bytebuddy/byte-buddy/1.14.1, Apache-2.0 AND BSD-3-Clause, approved, #7163
maven/mavencentral/net.bytebuddy/byte-buddy/1.14.15, Apache-2.0 AND BSD-3-Clause, approved, #7163
maven/mavencentral/net.bytebuddy/byte-buddy/1.14.16, Apache-2.0 AND BSD-3-Clause, approved, #7163
maven/mavencentral/net.bytebuddy/byte-buddy/1.14.18, Apache-2.0 AND BSD-3-Clause, approved, #7163
maven/mavencentral/net.java.dev.jna/jna-platform/5.13.0, Apache-2.0 OR LGPL-2.1-or-later, approved, #6707
maven/mavencentral/net.java.dev.jna/jna-platform/5.6.0, Apache-2.0 OR LGPL-2.1-or-later, approved, CQ22390
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ plugins {

dependencies {
api(libs.edc.spi.core)
api(libs.edc.junit)
implementation(libs.edc.spi.dataplane.selector)
implementation(libs.edc.spi.dataplane.transfer)
implementation(libs.bouncyCastle.bcpkixJdk18on)
testImplementation(libs.edc.junit)
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ plugins {
dependencies {
implementation(project(":edc-extensions:migrations:postgresql-migration-lib"))
implementation(libs.edc.spi.core)
implementation(libs.edc.junit)
implementation(libs.edc.spi.transaction.datasource)
implementation(libs.edc.sql.assetindex)
implementation(libs.edc.sql.core)
Expand All @@ -37,5 +36,6 @@ dependencies {
// https://documentation.red-gate.com/flyway/release-notes-and-older-versions/release-notes-for-flyway-engine
runtimeOnly(libs.flyway.database.postgres)

testImplementation(libs.edc.junit)
testImplementation(testFixtures(libs.edc.sql.core))
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ plugins {
dependencies {
implementation(project(":edc-extensions:migrations:postgresql-migration-lib"))
implementation(libs.edc.spi.core)
implementation(libs.edc.junit)
implementation(libs.edc.spi.transaction.datasource)
implementation(libs.edc.sql.assetindex)
implementation(libs.edc.sql.core)
Expand All @@ -37,5 +36,6 @@ dependencies {
// https://documentation.red-gate.com/flyway/release-notes-and-older-versions/release-notes-for-flyway-engine
runtimeOnly(libs.flyway.database.postgres)

testImplementation(libs.edc.junit)
testImplementation(testFixtures(libs.edc.sql.core))
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ plugins {
dependencies {
implementation(project(":core:core-utils"))
implementation(libs.edc.spi.core)
implementation(libs.edc.junit)
implementation(libs.edc.spi.transaction.datasource)
implementation(libs.edc.sql.assetindex)
implementation(libs.edc.sql.core)
Expand All @@ -36,4 +35,6 @@ dependencies {
// so we need to add PG support explicitly
// https://documentation.red-gate.com/flyway/release-notes-and-older-versions/release-notes-for-flyway-engine
runtimeOnly(libs.flyway.database.postgres)

testImplementation(libs.edc.junit)
}

0 comments on commit 68575ad

Please sign in to comment.