Skip to content

Commit

Permalink
Update logger dependencies
Browse files Browse the repository at this point in the history
Related to #1813
  • Loading branch information
TobiasNx committed Oct 16, 2023
1 parent 2a661a1 commit 76ad5df
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,21 @@
<artifactId>core</artifactId>
<version>1.47.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.9.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<version>2.9.1</version>
</dependency>
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
<version>1.5.1</version>
</dependency>
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
Expand Down Expand Up @@ -169,6 +184,11 @@
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
</dependencies>
<build>
<resources>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@
import org.apache.http.entity.FileEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import org.elasticsearch.client.Client;
import org.elasticsearch.common.network.NetworkModule;
import org.elasticsearch.common.settings.Settings;
Expand All @@ -36,14 +38,14 @@
* Test of filtering resources with hbz holdings from culturegraph marcxml,
* tranforming into JSON, writing as an elasticsearch bulk json file, ingesting
* it and retrieving it via HTTP.
*
*
* @author Pascal Christoph(dr0i)
**/
@SuppressWarnings("javadoc")
public final class CulturegraphXmlFilterHbzToJsonTest {

private static final Logger LOG =
LogManager.getLogger(CulturegraphXmlFilterHbzToJsonTest.class);
LoggerFactory.getLogger(CulturegraphXmlFilterHbzToJsonTest.class);

private static final String PATH_TO_TEST = "src/test/resources/";
public static final String JSON_OUTPUT_FILE =
Expand Down

0 comments on commit 76ad5df

Please sign in to comment.