Skip to content
Snippets Groups Projects
Commit 2be10194 authored by Stefan E. Funk's avatar Stefan E. Funk
Browse files

fix: Fix class path problems

parent 8629d4e2
No related branches found
No related tags found
No related merge requests found
Pipeline #306247 passed
...@@ -69,6 +69,16 @@ ...@@ -69,6 +69,16 @@
<version>${junit.version}</version> <version>${junit.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency> <dependency>
<groupId>org.elasticsearch.client</groupId> <groupId>org.elasticsearch.client</groupId>
<artifactId>elasticsearch-rest-high-level-client</artifactId> <artifactId>elasticsearch-rest-high-level-client</artifactId>
......
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<artifactId>oaipmh</artifactId> <artifactId>oaipmh</artifactId>
<groupId>info.textgrid.middleware</groupId> <groupId>info.textgrid.middleware</groupId>
<version>4.3.0-SNAPSHOT</version> <version>4.3.0-SNAPSHOT</version>
</parent> </parent>
<groupId>info.textgrid.middleware</groupId>
<artifactId>oaipmh-webapp</artifactId> <artifactId>oaipmh-webapp</artifactId>
<packaging>war</packaging> <packaging>war</packaging>
<name>DARIAHDE :: OAI-PMH DataProvider :: Webapp</name> <name>DARIAHDE :: OAI-PMH DataProvider :: Webapp</name>
<url>https://projects.gwdg.de/projects/oai-pmh</url> <url>https://projects.gwdg.de/projects/oai-pmh</url>
<profiles> <profiles>
<profile> <profile>
<id>dhrep.deb</id> <id>dhrep.deb</id>
...@@ -51,12 +48,6 @@ ...@@ -51,12 +48,6 @@
</profile> </profile>
</profiles> </profiles>
<dependencies> <dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId> <artifactId>spring-core</artifactId>
......
...@@ -9,8 +9,8 @@ RS_ENDPOINT = https://repository.de.dariah.eu/1.0/oaipmh ...@@ -9,8 +9,8 @@ RS_ENDPOINT = https://repository.de.dariah.eu/1.0/oaipmh
############################ ############################
elasticSearch.url = 127.0.0.1 elasticSearch.url = 127.0.0.1
elasticSearch.port = 9202, 9203 elasticSearch.ports = 9202, 9203
elasticSearch.clusterName = *** elasticSearch.index = ***
elasticSearch.type = metadata elasticSearch.type = metadata
elasticSearch.itemLimit = 100 elasticSearch.itemLimit = 100
......
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
<jetty-maven-plugin.version>9.4.12.v20180830</jetty-maven-plugin.version> <jetty-maven-plugin.version>9.4.12.v20180830</jetty-maven-plugin.version>
<junit.version>4.13.1</junit.version> <junit.version>4.13.1</junit.version>
<json.version>20190722</json.version> <json.version>20190722</json.version>
<log4j.version>2.17.1</log4j.version>
<maven-antrun-plugin.version>1.3</maven-antrun-plugin.version> <maven-antrun-plugin.version>1.3</maven-antrun-plugin.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment