Skip to content
This repository has been archived by the owner on May 12, 2022. It is now read-only.

Commit

Permalink
Change the logging packge to log4j2 (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
pushyamig authored Mar 10, 2020
1 parent 56fe149 commit f9aca68
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>edu.umich.ctools</groupId>
<artifactId>canvasCourseManager</artifactId>
<packaging>war</packaging>
<version>4.0.5</version>
<version>4.0.6</version>
<name>canvasCourseManager</name>
<url>http://maven.apache.org</url>

Expand Down Expand Up @@ -39,9 +39,14 @@
</dependency>

<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.6.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.13.0</version>
</dependency>

<dependency>
Expand Down

0 comments on commit f9aca68

Please sign in to comment.