Skip to content

Commit

Permalink
ci: fix json-smart version
Browse files Browse the repository at this point in the history
  • Loading branch information
paweldomaradzki-dt committed Feb 28, 2025
1 parent dad7830 commit 100d06e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/accountservice/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ repositories {
mavenCentral()
}

configurations.all {
resolutionStrategy {
force 'net.minidev:json-smart:2.5.2'
}
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.4.3'
Expand Down
6 changes: 6 additions & 0 deletions src/engine/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ repositories {
mavenCentral()
}

configurations.all {
resolutionStrategy {
force 'net.minidev:json-smart:2.5.2'
}
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.4.3'
Expand Down
6 changes: 6 additions & 0 deletions src/feature-flag-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ repositories {
mavenCentral()
}

configurations.all {
resolutionStrategy {
force 'net.minidev:json-smart:2.5.2'
}
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-web'
Expand Down

0 comments on commit 100d06e

Please sign in to comment.