Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
minerva
core
Commits
6a3f1223
Commit
6a3f1223
authored
5 years ago
by
Piotr Gawron
Browse files
Options
Downloads
Patches
Plain Diff
allow slf4f from sbml library
parent
e6849791
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!773
Resolve "move from log4j to log4j2"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
converter-sbml/pom.xml
+32
-8
32 additions, 8 deletions
converter-sbml/pom.xml
with
32 additions
and
8 deletions
converter-sbml/pom.xml
+
32
−
8
View file @
6a3f1223
...
...
@@ -58,7 +58,7 @@
<version>
1.0
</version>
</dependency>
<!-- Log4J2-->
<!-- Log4J2
-->
<dependency>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-api
</artifactId>
...
...
@@ -69,6 +69,12 @@
<artifactId>
log4j-core
</artifactId>
<version>
${log4j2.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-slf4j-impl
</artifactId>
<version>
${log4j2.version}
</version>
</dependency>
<!-- mockito used for testing -->
<dependency>
...
...
@@ -82,12 +88,19 @@
<groupId>
org.sbml.jsbml
</groupId>
<artifactId>
jsbml
</artifactId>
<version>
${jsbml.version}
</version>
<!-- for now we use lower version of log4j and this one introduce some
problem with tomcat logging -->
<!-- we use higher version of log4j -->
<exclusions>
<exclusion>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-api
</artifactId>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-api
</artifactId>
</exclusion>
<exclusion>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-core
</artifactId>
</exclusion>
<exclusion>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-slf4j-impl
</artifactId>
</exclusion>
<exclusion>
<groupId>
junit
</groupId>
...
...
@@ -109,9 +122,20 @@
<groupId>
org.sbml.jsbml
</groupId>
<artifactId>
jsbml-core
</artifactId>
<version>
${jsbml.version}
</version>
<!-- for now we use lower version of log4j and this one introduce some
problem with tomcat logging -->
<!-- we use higher version of log4j -->
<exclusions>
<exclusion>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-api
</artifactId>
</exclusion>
<exclusion>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-core
</artifactId>
</exclusion>
<exclusion>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-slf4j-impl
</artifactId>
</exclusion>
<exclusion>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-api
</artifactId>
...
...
@@ -139,7 +163,7 @@
<artifactId>
commons-text
</artifactId>
<version>
${apache.commons-text.version}
</version>
</dependency>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment