Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Genesys PGR
App Blocks
Commits
91054c88
Commit
91054c88
authored
Jan 06, 2022
by
Matija Obreza
Browse files
log4j: slf4j dependency as provided, log4j only needed in our testing
parent
f2052058
Changes
1
Hide whitespace changes
Inline
Side-by-side
parent/pom.xml
View file @
91054c88
...
...
@@ -32,6 +32,7 @@
<jdk.target>
11
</jdk.target>
<jdk.source>
11
</jdk.source>
<show.deprecations>
false
</show.deprecations>
<slf4j.version>
1.7.31
</slf4j.version>
<log4j2.version>
2.16.0
</log4j2.version>
<junit.version>
4.13.2
</junit.version>
<org.hamcrest.version>
2.2
</org.hamcrest.version>
...
...
@@ -163,18 +164,23 @@
</dependency>
<!-- Logging dependencies -->
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-api
</artifactId>
<version>
${slf4j.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-slf4j-impl
</artifactId>
<version>
${log4j2.version}
</version>
<scope>
provided
</scope>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-jcl
</artifactId>
<version>
${log4j2.version}
</version>
<scope>
provided
</scope>
<scope>
test
</scope>
</dependency>
<!-- Apache commons -->
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment