Skip to content

Commit

Permalink
ci: fix json-smart dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
paweldomaradzki-dt committed Mar 3, 2025
1 parent 100d06e commit 567855a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 24 deletions.
10 changes: 2 additions & 8 deletions src/accountservice/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.4.1'
id 'org.springframework.boot' version '3.4.3'
id 'io.spring.dependency-management' version '1.1.6'
id 'java'
}
Expand All @@ -14,15 +14,9 @@ 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'
testImplementation 'org.springframework.boot:spring-boot-starter-test'

implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.3'
implementation 'io.swagger.core.v3:swagger-annotations:2.2.27'
Expand Down
10 changes: 2 additions & 8 deletions src/engine/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.4.1'
id 'org.springframework.boot' version '3.4.3'
id 'io.spring.dependency-management' version '1.1.7'
id 'java'
}
Expand All @@ -14,15 +14,9 @@ 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'
testImplementation 'org.springframework.boot:spring-boot-starter-test'

implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.3'
implementation 'io.swagger.core.v3:swagger-annotations:2.2.27'
Expand Down
7 changes: 6 additions & 1 deletion src/feature-flag-service/.snyk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
version: v1.25.0
version: v1.25.1
# ignores vulnerabilities until expiry date; change duration by modifying expiry date
ignore:
'snyk:lic:maven:ch.qos.logback:logback-classic:(EPL-1.0_OR_LGPL-2.1)':
Expand Down Expand Up @@ -42,4 +42,9 @@ ignore:
reason: licence issue reviewed
expires: 2030-01-01T00:00:00.000Z
created: 2024-07-19T14:24:05.092Z
'snyk:lic:maven:jakarta.el:jakarta.el-api:(EPL-2.0_OR_GPL-2.0-with-classpath-exception)':
- '*':
reason: licence issue reviewed
expires: 2030-01-01T00:00:00.000Z
created: 2025-03-03T08:45:48.797Z
patch: {}
8 changes: 1 addition & 7 deletions src/feature-flag-service/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.4.1'
id 'org.springframework.boot' version '3.4.3'
id 'io.spring.dependency-management' version '1.1.7'
id 'java'
}
Expand All @@ -21,12 +21,6 @@ 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 567855a

Please sign in to comment.