dnet-applications/apps/dhp-broker-public-application/pom.xml

72 lines
1.8 KiB
XML
Raw Normal View History

2020-08-28 09:40:04 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<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-08-28 09:40:04 +02:00
<parent>
<groupId>eu.dnetlib.dhp</groupId>
<artifactId>apps</artifactId>
<version>3.5.4-SNAPSHOT</version>
2022-03-29 12:13:33 +02:00
<relativePath>../pom.xml</relativePath>
2020-08-28 09:40:04 +02:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>dhp-broker-public-application</artifactId>
<packaging>jar</packaging>
<name>dhp-broker-public-application</name>
<description>D-Net Broker Public Service (new Hadoop implementation)</description>
<dependencies>
<dependency>
<groupId>eu.dnetlib.dhp</groupId>
<artifactId>dnet-broker-apps-common</artifactId>
<version>${project.version}</version>
</dependency>
2021-11-03 10:51:04 +01:00
2020-11-09 10:38:18 +01:00
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
</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-08-28 09:40:04 +02:00
</dependencies>
<build>
<plugins>
2021-05-11 12:28:20 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-help-plugin</artifactId>
</plugin>
2020-08-28 09:40:04 +02:00
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>