Skip to content

Commit

Permalink
Merge pull request #1008 from adriangonz/use-log4j2
Browse files Browse the repository at this point in the history
Move from logback to log4j2
  • Loading branch information
ukclivecox authored Oct 31, 2019
2 parents 139a796 + f20a8a9 commit ca8282d
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -246,16 +246,29 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<artifactId>spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<!-- Excluded due to nn standard license -->
<groupId>org.json</groupId>
<artifactId>json</artifactId>
</exclusion>
<exclusion>
<!-- Excluded to use Log4J2 -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
<dependency>
<groupId>io.opentracing</groupId>
<artifactId>opentracing-mock</artifactId>
Expand Down Expand Up @@ -292,10 +305,6 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
Expand Down

0 comments on commit ca8282d

Please sign in to comment.