Skip to content

Commit

Permalink
Merge pull request #683 from hazendaz/master
Browse files Browse the repository at this point in the history
Use one proprety for maven binaries and rewrite log4j2 again as initial understanding was incorrect
  • Loading branch information
hazendaz authored Nov 30, 2023
2 parents 7d0d09a + b46103b commit fad5ece
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@
<doxiaVersion>1.12.0</doxiaVersion>
<doxiaSiteToolsVersion>1.11.1</doxiaSiteToolsVersion>

<mavenCoreVersion>3.9.5</mavenCoreVersion>
<mavenSharedUtilsVersion>3.4.2</mavenSharedUtilsVersion>
<mavenTransferVersion>0.13.1</mavenTransferVersion>
<mavenCommonArtifactFilters>3.3.2</mavenCommonArtifactFilters>
Expand Down Expand Up @@ -280,9 +279,20 @@
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>${spotbugsVersion}</version>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Logging -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
<version>2.22.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
Expand All @@ -299,13 +309,6 @@
<version>${slf4jVersion}</version>
</dependency>

<!-- Logging (temp fix due to bug in spotbugs) -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
<version>2.22.0</version>
</dependency>

<!-- asm -->
<dependency>
<groupId>org.ow2.asm</groupId>
Expand Down Expand Up @@ -475,13 +478,13 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${mavenCoreVersion}</version>
<version>${mavenVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>${mavenCoreVersion}</version>
<version>${mavenVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit fad5ece

Please sign in to comment.