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

build: fix dependency scope for libs.edc.junit #1463

Merged
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
1 change: 0 additions & 1 deletion DEPENDENCIES
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
maven/mavencentral/com.apicatalog/carbon-did/0.3.0, Apache-2.0, approved, clearlydefined

Check warning on line 1 in DEPENDENCIES

View workflow job for this annotation

GitHub Actions / verify / verify-dependencies / Dash-Verify-Licenses

Restricted Dependencies found

Some dependencies are marked 'restricted' - please review them
maven/mavencentral/com.apicatalog/copper-multibase/0.5.0, Apache-2.0, approved, #14501
maven/mavencentral/com.apicatalog/copper-multicodec/0.1.1, Apache-2.0, approved, #14500
maven/mavencentral/com.apicatalog/iron-ed25519-cryptosuite-2020/0.14.0, Apache-2.0, approved, #14503
Expand Down Expand Up @@ -277,7 +277,6 @@
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)
}
Loading