Skip to content

Commit

Permalink
Merge pull request #854 from hazendaz/main
Browse files Browse the repository at this point in the history
[pom] Use commons-logging again instead of jcl-over-slf4j and cleanup
  • Loading branch information
hazendaz committed Mar 17, 2024
2 parents a0982f3 + 57b4ca2 commit c197314
Showing 1 changed file with 7 additions and 19 deletions.
26 changes: 7 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,11 @@
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.4</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>net.revelc.code.formatter</groupId>
Expand All @@ -239,12 +238,6 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-digester3</artifactId>
<version>3.2</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
Expand Down Expand Up @@ -272,11 +265,6 @@
<artifactId>jsoup</artifactId>
<version>1.17.2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.7.36</version>
</dependency>
<dependency>
<groupId>org.w3c.css</groupId>
<artifactId>sac</artifactId>
Expand All @@ -298,8 +286,8 @@
<ignoredUnusedDeclaredDependencies>
<!-- ignore transitive dependency overridden to avoid vulnerability -->
<ignore>commons-beanutils:commons-beanutils</ignore>
<!-- ignore alignment with jcl-over-slf4j as we intentially dropped commons logging -->
<ignore>org.slf4j:jcl-over-slf4j</ignore>
<!-- ignore alignment with commons-logging to support slf4j -->
<ignore>commons-logging:commons-logging</ignore>
<!-- ignore alignment with plexus-xml as required to ensure plexus-utils uses maven 3 -->
<ignore>org.codehaus.plexus:plexus-xml</ignore>
</ignoredUnusedDeclaredDependencies>
Expand Down

0 comments on commit c197314

Please sign in to comment.