Fix for logback as a transitive dependency.

- updated pom.xml to have logback-classic in test scope.
- moved logback.xml from src/main/resources to src/test/resources
This commit is contained in:
Amith Koujalgi
2023-11-12 19:48:40 +05:30
parent 6678cd3f69
commit 5c5463b764
2 changed files with 1 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} %msg%n</pattern>
</encoder>
</appender>
<root level="info">
<appender-ref ref="STDOUT"/>
</root>
<logger name="org.apache" level="WARN"/>
<logger name="httpclient" level="WARN"/>
</configuration>