Skip to content

Commit 100d06e

Browse files
ci: fix json-smart version
1 parent dad7830 commit 100d06e

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

src/accountservice/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ repositories {
1414
mavenCentral()
1515
}
1616

17+
configurations.all {
18+
resolutionStrategy {
19+
force 'net.minidev:json-smart:2.5.2'
20+
}
21+
}
22+
1723
dependencies {
1824
implementation 'org.springframework.boot:spring-boot-starter-web'
1925
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.4.3'

src/engine/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ repositories {
1414
mavenCentral()
1515
}
1616

17+
configurations.all {
18+
resolutionStrategy {
19+
force 'net.minidev:json-smart:2.5.2'
20+
}
21+
}
22+
1723
dependencies {
1824
implementation 'org.springframework.boot:spring-boot-starter-web'
1925
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.4.3'

src/feature-flag-service/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ repositories {
2121
mavenCentral()
2222
}
2323

24+
configurations.all {
25+
resolutionStrategy {
26+
force 'net.minidev:json-smart:2.5.2'
27+
}
28+
}
29+
2430
dependencies {
2531
implementation 'org.springframework.boot:spring-boot-starter'
2632
implementation 'org.springframework.boot:spring-boot-starter-web'

0 commit comments

Comments
 (0)