Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CVE fixes #320

Merged
merged 1 commit into from
Dec 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 15 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,22 +74,28 @@
<!-- fix CVE-2020-8908 and CVE-2023-2976 from org.apache.maven:maven-core -->
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.4.0-jre</version>
<scope>runtime</scope>
<version>32.0.1-android</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- fix CVE-2022-29599 from org.apache.maven:maven-core -->
<!-- fix CVE-2022-29599 and CVE-2020-15250 from org.apache.maven:maven-core -->
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-shared-utils</artifactId>
<version>3.4.2</version>
<scope>runtime</scope>
<scope>provided</scope>
</dependency>
<dependency>
<!-- fix CVE-2024-36124 from org.apache.maven:maven-archiver -->
<groupId>org.iq80.snappy</groupId>
<artifactId>snappy</artifactId>
<version>0.5</version>
<scope>runtime</scope>
<!-- fix CVE-2017-1000487 and CVE-2022-4244, and CVE-2022-4245 from org.apache.maven:maven-core -->
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.0.24</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- fix CVE-2024-47554 from org.apache.maven.shared:file-management -->
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.14.0</version>
</dependency>
<!-- main groovy support -->
<dependency>
Expand Down
Loading