2020-07-02 08:55:42 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-09-15 10:09:34 +02: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>
|
2020-09-15 10:09:34 +02:00
|
|
|
<version>3.1.1</version>
|
2020-07-08 09:54:54 +02:00
|
|
|
<relativePath>../</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>
|
|
|
|
|
|
|
|
<!-- Mail -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
<version>1.4.7</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 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>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
2020-07-27 10:07:07 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<executable>true</executable>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-07-02 08:55:42 +02:00
|
|
|
|
|
|
|
</project>
|