Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions commons/logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
<artifactId>slf4j-api</artifactId>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@
<version>${version.slf4j}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>${version.slf4j}</version>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
Expand Down
6 changes: 4 additions & 2 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@
<version.jakarta.xml.bind-api>4.0.2</version.jakarta.xml.bind-api>
<version.httpclient>4.5.14</version.httpclient>

<version.slf4j>1.7.26</version.slf4j>
<version.logback>1.2.11</version.logback>
<!-- Tomcat 9 comes with slf4j-api 1.7 -->
<version.slf4j>1.7.36</version.slf4j>
<!-- logback >= 1.4.0 discontinuous support for Javax EE -->
<version.logback>1.3.14</version.logback>
<version.junit>4.13.1</version.junit>
<version.assertj>2.9.1</version.assertj>
<version.mockito>5.10.0</version.mockito>
Expand Down