Skip to content
This repository was archived by the owner on Dec 25, 2024. It is now read-only.

Commit d1b078e

Browse files
authored
Replace slf4j-simple with Logback & its optional dependency for conditionals (Janino) (#317)
Co-authored-by: ayewo <[email protected]>
1 parent 2cf2ad0 commit d1b078e

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

pom.xml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -274,11 +274,6 @@
274274
<artifactId>slf4j-api</artifactId>
275275
<version>${slf4j.version}</version>
276276
</dependency>
277-
<dependency>
278-
<groupId>org.slf4j</groupId>
279-
<artifactId>slf4j-simple</artifactId>
280-
<version>${slf4j.version}</version>
281-
</dependency>
282277
<dependency>
283278
<groupId>org.apache.commons</groupId>
284279
<artifactId>commons-lang3</artifactId>
@@ -433,6 +428,21 @@
433428
<artifactId>lambdaj</artifactId>
434429
<version>2.3.3</version>
435430
</dependency>
431+
<dependency>
432+
<groupId>ch.qos.logback</groupId>
433+
<artifactId>logback-classic</artifactId>
434+
<version>${logback.version}</version>
435+
</dependency>
436+
<dependency>
437+
<groupId>ch.qos.logback</groupId>
438+
<artifactId>logback-core</artifactId>
439+
<version>${logback.version}</version>
440+
</dependency>
441+
<dependency>
442+
<groupId>org.codehaus.janino</groupId>
443+
<artifactId>janino</artifactId>
444+
<version>3.1.11</version>
445+
</dependency>
436446
</dependencies>
437447
<properties>
438448
<!-- RELEASE_VERSION -->
@@ -460,6 +470,7 @@
460470
<jmustache.version>1.14</jmustache.version>
461471
<junit.version>4.13.2</junit.version>
462472
<kotlin.version>1.6.10</kotlin.version>
473+
<logback.version>1.4.14</logback.version>
463474
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
464475
<maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
465476
<maven-javadoc-plugin.version>3.4.0</maven-javadoc-plugin.version>
@@ -471,7 +482,7 @@
471482
<reflections.version>0.10</reflections.version>
472483
<rxgen.version>1.3</rxgen.version>
473484
<scala-maven-plugin.version>4.6.1</scala-maven-plugin.version>
474-
<slf4j.version>2.0.0</slf4j.version>
485+
<slf4j.version>2.0.9</slf4j.version>
475486
<spotbugs-plugin.version>3.1.12.2</spotbugs-plugin.version>
476487
<maven-surefire-plugin.version>3.0.0-M6</maven-surefire-plugin.version>
477488
<openrewrite.version>7.22.0</openrewrite.version>

0 commit comments

Comments
 (0)