Skip to content

Commit

Permalink
Bump org.owasp:dependency-check-maven from 10.0.4 to 11.0.0 (#184)
Browse files Browse the repository at this point in the history
* Bump org.owasp:dependency-check-maven from 10.0.4 to 11.0.0

Bumps [org.owasp:dependency-check-maven](https://github.com/jeremylong/DependencyCheck) from 10.0.4 to 11.0.0.
- [Release notes](https://github.com/jeremylong/DependencyCheck/releases)
- [Changelog](https://github.com/jeremylong/DependencyCheck/blob/main/CHANGELOG.md)
- [Commits](jeremylong/DependencyCheck@v10.0.4...v11.0.0)

---
updated-dependencies:
- dependency-name: org.owasp:dependency-check-maven
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fixes CVE-2024-38819

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael Jacoby <[email protected]>
  • Loading branch information
dependabot[bot] and mjacoby authored Oct 23, 2024
1 parent 7964a04 commit 4d57324
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@
<artifactId>spring-web</artifactId>
<version>${spring.web.version}</version>
</dependency>
<!-- Fixes CVE-2024-38819. Can be removed once org.springframework.boot:spring-boot-starter-web >= 3.3.5 is used -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.web.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
Expand All @@ -45,6 +51,11 @@
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
<!-- Fixes CVE-2024-38819. Can be removed once org.springframework.boot:spring-boot-starter-web >= 3.3.5 is used -->
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<maven.plugin.jar.version>3.4.2</maven.plugin.jar.version>
<maven.plugin.javadoc.version>3.10.1</maven.plugin.javadoc.version>
<maven.plugin.nexus-staging.version>1.7.0</maven.plugin.nexus-staging.version>
<maven.plugin.owasp.version>10.0.4</maven.plugin.owasp.version>
<maven.plugin.owasp.version>11.0.0</maven.plugin.owasp.version>
<maven.plugin.picocli.version>4.7.6</maven.plugin.picocli.version>
<maven.plugin.shade.version>3.6.0</maven.plugin.shade.version>
<maven.plugin.source.version>3.3.1</maven.plugin.source.version>
Expand Down

0 comments on commit 4d57324

Please sign in to comment.