Skip to content

Commit

Permalink
Exclude slf4j-api, commons-lang3 from maven and galleon dependencies
Browse files Browse the repository at this point in the history
Both slf4j-api and commons-lang3 transitive deps will still be present,
but in different versions that better suit us. This makes it easier to
perform automatic dependency alignments.
  • Loading branch information
TomasHofman committed Dec 3, 2024
1 parent 61e3bba commit fd6ff18
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,16 @@
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${version.org.apache.maven.maven-core}</version>
<exclusions>
<exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down Expand Up @@ -294,6 +304,12 @@
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-common-artifact-filters</artifactId>
<version>${version.org.apache.maven.shared.filter}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
Expand Down Expand Up @@ -458,6 +474,12 @@
<groupId>org.jboss.galleon</groupId>
<artifactId>galleon-core</artifactId>
<version>${version.org.jboss.galleon}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit fd6ff18

Please sign in to comment.