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

Fixes #24004: Add neko-htmlUnit as dependency due to security checks #631

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 5 additions & 16 deletions openscap/pom-template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,24 +55,13 @@
</exclusion>
</exclusions>
</dependency>
<!-- Added due to CVE-2022-44729 in batik-css 1.16 that is a dependency of antisamy 1.7.3, remove when antisamy 1.7.4 -->
<!-- added because of cve CVE-2023-49093 in neko 3.6.0 that is a dependency of antisamy, should be ok in antisamy 1.7.5 -->
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-css</artifactId>
<version>1.17</version>
<exclusions>
<!-- exclude this old version of commons-io as newer can be used -->
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
<!-- exclude this as batik-css has a dependency that uses an older commons-logging and we want to eliminate the convergence mismatch -->
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
<groupId>org.htmlunit</groupId>
<artifactId>neko-htmlunit</artifactId>
<version>3.9.0</version>
</dependency>

</dependencies>

<!-- Below is an horrible if/then/else in maven. You shouldn't have anything to change here -->
Expand Down