Skip to content

Commit

Permalink
Update gradle config to use testImplementation for FT
Browse files Browse the repository at this point in the history
  • Loading branch information
mauriciogeneroso committed Jun 24, 2024
1 parent f0f0f57 commit b68b4b6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions service-discovery-ft/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ repositories {
}

dependencies {
implementation(libs.cucumber.spring)
implementation(libs.cucumber.java)
testImplementation(libs.cucumber.spring)
testImplementation(libs.cucumber.java)

implementation(libs.jackson.databing)
implementation(libs.prometheus.scraper)
testImplementation(libs.jackson.databing)
testImplementation(libs.prometheus.scraper)

implementation(libs.spring.boot.starter.test)
implementation(libs.google.guava)
testImplementation(libs.spring.boot.starter.test)
testImplementation(libs.google.guava)
}

configurations {
cucumberRuntime {
extendsFrom implementation
extendsFrom testImplementation
}
}

Expand Down

0 comments on commit b68b4b6

Please sign in to comment.