Skip to content

Commit 967cf28

Browse files
authored
Remove use of jansi due to Java 24+ warnings (#656)
1 parent 8de2f25 commit 967cf28

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ dependencies {
8787
implementation 'ch.qos.logback:logback-core'
8888
implementation 'ch.qos.logback:logback-classic'
8989
implementation "info.picocli:picocli:${picocliVersion}"
90-
implementation 'org.fusesource.jansi:jansi:2.4.2'
9190
implementation 'com.fasterxml.jackson.core:jackson-databind'
9291
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml'
9392
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml'

src/main/resources/logback.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<configuration>
22
<conversionRule conversionWord="customHighlight" converterClass="me.itzg.helpers.logger.CustomHighlight" />
33
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
4-
<withJansi>true</withJansi>
54
<filter class="ch.qos.logback.classic.filter.LevelFilter">
65
<level>INFO</level>
76
<onMatch>ACCEPT</onMatch>
@@ -14,7 +13,6 @@
1413
</encoder>
1514
</appender>
1615
<appender name="STDERR" class="ch.qos.logback.core.ConsoleAppender">
17-
<withJansi>true</withJansi>
1816
<filter class="ch.qos.logback.classic.filter.LevelFilter">
1917
<level>INFO</level>
2018
<onMatch>DENY</onMatch>

0 commit comments

Comments
 (0)