Skip to content

Commit

Permalink
revise logger dependencies based on feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
ptrthomas committed Nov 24, 2023
1 parent ac114ca commit ef89064
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions karate-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,23 @@
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>3.1.2.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.linecorp.armeria</groupId>
<artifactId>armeria</artifactId>
<version>1.26.2</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
Expand Down Expand Up @@ -63,9 +75,15 @@
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<!-- this is tied to logback-classic -->
<version>2.0.9</version>
<version>2.0.7</version>
<scope>runtime</scope>
</dependency>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<!-- this is tied to logback-classic -->
<version>2.0.7</version>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
Expand Down

0 comments on commit ef89064

Please sign in to comment.