Skip to content

Commit 567855a

Browse files
ci: fix json-smart dependency
1 parent 100d06e commit 567855a

File tree

4 files changed

+11
-24
lines changed

4 files changed

+11
-24
lines changed

src/accountservice/build.gradle

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.4.1'
2+
id 'org.springframework.boot' version '3.4.3'
33
id 'io.spring.dependency-management' version '1.1.6'
44
id 'java'
55
}
@@ -14,15 +14,9 @@ repositories {
1414
mavenCentral()
1515
}
1616

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

2721
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.3'
2822
implementation 'io.swagger.core.v3:swagger-annotations:2.2.27'

src/engine/build.gradle

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.4.1'
2+
id 'org.springframework.boot' version '3.4.3'
33
id 'io.spring.dependency-management' version '1.1.7'
44
id 'java'
55
}
@@ -14,15 +14,9 @@ repositories {
1414
mavenCentral()
1515
}
1616

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

2721
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.3'
2822
implementation 'io.swagger.core.v3:swagger-annotations:2.2.27'

src/feature-flag-service/.snyk

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
2-
version: v1.25.0
2+
version: v1.25.1
33
# ignores vulnerabilities until expiry date; change duration by modifying expiry date
44
ignore:
55
'snyk:lic:maven:ch.qos.logback:logback-classic:(EPL-1.0_OR_LGPL-2.1)':
@@ -42,4 +42,9 @@ ignore:
4242
reason: licence issue reviewed
4343
expires: 2030-01-01T00:00:00.000Z
4444
created: 2024-07-19T14:24:05.092Z
45+
'snyk:lic:maven:jakarta.el:jakarta.el-api:(EPL-2.0_OR_GPL-2.0-with-classpath-exception)':
46+
- '*':
47+
reason: licence issue reviewed
48+
expires: 2030-01-01T00:00:00.000Z
49+
created: 2025-03-03T08:45:48.797Z
4550
patch: {}

src/feature-flag-service/build.gradle

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.4.1'
2+
id 'org.springframework.boot' version '3.4.3'
33
id 'io.spring.dependency-management' version '1.1.7'
44
id 'java'
55
}
@@ -21,12 +21,6 @@ repositories {
2121
mavenCentral()
2222
}
2323

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

0 commit comments

Comments
 (0)