2020-07-02 08:55:42 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-12-16 09:16:52 +01:00
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
2020-07-02 11:14:28 +02:00
|
|
|
|
|
|
|
<parent>
|
2020-07-08 09:54:54 +02:00
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
2020-07-03 09:09:59 +02:00
|
|
|
<artifactId>apps</artifactId>
|
2023-11-06 11:18:33 +01:00
|
|
|
<version>3.4.3</version>
|
2022-03-29 12:13:33 +02:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2020-07-02 11:14:28 +02:00
|
|
|
</parent>
|
|
|
|
|
2020-07-02 08:55:42 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2020-07-02 11:14:28 +02:00
|
|
|
<artifactId>dhp-broker-application</artifactId>
|
2020-07-02 08:55:42 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2020-07-02 11:14:28 +02:00
|
|
|
<name>dhp-broker-application</name>
|
|
|
|
<description>D-Net Broker Service (new Hadoop implementation)</description>
|
2020-07-02 08:55:42 +02:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- Openaire -->
|
|
|
|
<dependency>
|
2020-07-08 09:54:54 +02:00
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
2020-08-28 09:40:04 +02:00
|
|
|
<artifactId>dnet-broker-apps-common</artifactId>
|
2020-07-08 09:54:54 +02:00
|
|
|
<version>${project.version}</version>
|
2020-07-02 08:55:42 +02:00
|
|
|
</dependency>
|
|
|
|
|
2021-11-03 10:51:04 +01:00
|
|
|
<!-- Tests -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2020-07-02 08:55:42 +02:00
|
|
|
</dependencies>
|
|
|
|
|
2020-07-27 10:07:07 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2021-05-11 12:28:20 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-help-plugin</artifactId>
|
|
|
|
</plugin>
|
2020-07-27 10:07:07 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-07-02 08:55:42 +02:00
|
|
|
|
|
|
|
</project>
|