Skip to content

Commit 0bff6d4

Browse files
committed
Update dependencies
- Updates the dependency-check version - Adds a version overrides the commons-validator version of schemafriend to resolve a security vulnerability - Adds a dependabot configuration
1 parent ec31ee7 commit 0bff6d4

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "maven"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
labels:
8+
- "dependencies"

pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
2929
<sonar.organization>spdx-1</sonar.organization>
3030
<sonar.projectKey>spdx-v3jsonld-store</sonar.projectKey>
31-
<dependency-check-maven.version>8.4.3</dependency-check-maven.version>
31+
<dependency-check-maven.version>12.1.3</dependency-check-maven.version>
3232
</properties>
3333
<licenses>
3434
<license>
@@ -144,6 +144,14 @@
144144
<version>4.13.2</version>
145145
<scope>test</scope>
146146
</dependency>
147+
<!-- The following dependency is to override the commons validator version dependency in ae-jsonschemafriend-core
148+
reference: https://github.com/jimblackler/jsonschemafriend/issues/125
149+
TODO: Once the above issue has been resolved, we should remove this dependency -->
150+
<dependency>
151+
<groupId>commons-validator</groupId>
152+
<artifactId>commons-validator</artifactId>
153+
<version>1.10.0</version>
154+
</dependency>
147155
<dependency>
148156
<groupId>org.metaeffekt.bundle.jsonschemafriend</groupId>
149157
<artifactId>ae-jsonschemafriend-core</artifactId>

0 commit comments

Comments
 (0)