Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add log4j-core; update to log4j 2.16.0 #443

Merged
merged 1 commit into from
Dec 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions minerva-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@
<groupId>org.obolibrary.robot</groupId>
<artifactId>robot-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
</dependencies>

</project>
4 changes: 4 additions & 0 deletions minerva-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -181,5 +181,9 @@
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
</dependencies>
</project>
10 changes: 8 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<sesame.version>2.7.12</sesame.version> <!-- use same as Blazegraph -->
<jetty.version>9.2.3.v20140905</jetty.version> <!-- needs to be exactly 9.2.3.v20140905 - older or newer version of jetty will not work with text search api-->
<jersey.version>2.29</jersey.version>
<log4j.version>2.16.0</log4j.version>
</properties>

<build>
Expand Down Expand Up @@ -334,13 +335,18 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j</artifactId>
<version>2.15.0</version>
<version>${log4j.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<version>2.15.0</version>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.obolibrary.robot</groupId>
Expand Down