Skip to content

Commit

Permalink
fix(integration): use test configurations for dependencies (#1082)
Browse files Browse the repository at this point in the history
since the code is in src/test
  • Loading branch information
dbyron-sf committed Mar 26, 2024
1 parent fe10532 commit f16c1f8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions rosco-integration/rosco-integration.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
dependencies {
implementation "com.fasterxml.jackson.core:jackson-databind"
implementation "org.assertj:assertj-core"
implementation "org.junit.jupiter:junit-jupiter-api"
implementation "org.slf4j:slf4j-api"
implementation "org.testcontainers:testcontainers"
implementation "org.testcontainers:junit-jupiter"
runtimeOnly "ch.qos.logback:logback-classic"
runtimeOnly "org.junit.jupiter:junit-jupiter-engine"
testImplementation "com.fasterxml.jackson.core:jackson-databind"
testImplementation "org.assertj:assertj-core"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation "org.slf4j:slf4j-api"
testImplementation "org.testcontainers:testcontainers"
testImplementation "org.testcontainers:junit-jupiter"
testRuntimeOnly "ch.qos.logback:logback-classic"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
}

test.configure {
Expand Down

0 comments on commit f16c1f8

Please sign in to comment.