diff options
author | Decebal Suiu <decebal.suiu@gmail.com> | 2020-04-22 09:58:24 +0300 |
---|---|---|
committer | Decebal Suiu <decebal.suiu@gmail.com> | 2020-04-22 09:58:24 +0300 |
commit | fd72b5389257ef2a38b71e5f0f45e09e26b3501a (patch) | |
tree | 3cc4de5ed8ea3ba2be88a8d65b46f1afa6742610 /pf4j/pom.xml | |
parent | a01cd8ac5b0b73dfb1c7a43d24be261aa2f13405 (diff) | |
download | pf4j-fd72b5389257ef2a38b71e5f0f45e09e26b3501a.tar.gz pf4j-fd72b5389257ef2a38b71e5f0f45e09e26b3501a.zip |
Switch to Log4j2
Diffstat (limited to 'pf4j/pom.xml')
-rw-r--r-- | pf4j/pom.xml | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/pf4j/pom.xml b/pf4j/pom.xml index dd8e519..c67e0f2 100644 --- a/pf4j/pom.xml +++ b/pf4j/pom.xml @@ -73,12 +73,6 @@ <version>${slf4j.version}</version> </dependency> <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> - <version>${slf4j.version}</version> - <scope>test</scope> - </dependency> - <dependency> <groupId>com.github.zafarkhaja</groupId> <artifactId>java-semver</artifactId> <version>0.9.0</version> @@ -90,6 +84,26 @@ <optional>true</optional> </dependency> + <!-- Logging --> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-api</artifactId> + <version>${log4j.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> + <version>${log4j.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-slf4j-impl</artifactId> + <version>${log4j.version}</version> + <scope>test</scope> + </dependency> + <!-- Testing --> <dependency> <groupId>org.hamcrest</groupId> |