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

139 lines
3.5 KiB
XML
Raw Normal View History

2020-07-02 08:55:42 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2020-07-27 11:18:21 +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>
<groupId>eu.dnetlib.dhp</groupId>
2020-07-03 09:09:59 +02:00
<artifactId>apps</artifactId>
<version>3.1.1-SNAPSHOT</version>
<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>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-elasticsearch</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<exclusions>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
</exclusion>
</exclusions>
</dependency>
2020-07-23 15:34:53 +02:00
<!-- Postgres -->
2020-07-02 08:55:42 +02:00
<dependency>
2020-07-23 15:34:53 +02:00
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
2020-07-02 08:55:42 +02:00
</dependency>
2020-07-02 11:14:28 +02:00
<!-- Gson -->
2020-07-02 08:55:42 +02:00
<dependency>
2020-07-02 11:14:28 +02:00
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
2020-07-02 08:55:42 +02:00
</dependency>
2020-07-27 11:18:21 +02:00
<!-- JAXB API, java.xml.bind module -->
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<!-- JAXB Runtime, com.sun.xml.bind module -->
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
</dependency>
2020-07-02 08:55:42 +02:00
<!-- Mail -->
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.7</version>
</dependency>
<!-- Swagger -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.4.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.4.0</version>
</dependency>
<!-- Openaire -->
<dependency>
<groupId>eu.dnetlib.dhp</groupId>
2020-07-02 08:55:42 +02:00
<artifactId>dnet-openaire-broker-common</artifactId>
<version>${project.version}</version>
2020-07-02 08:55:42 +02:00
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>stringtemplate</artifactId>
<version>3.2.1</version>
</dependency>
<!-- for /metrics and /health controllers -->
<dependency>
<groupId>io.prometheus</groupId>
<artifactId>simpleclient_spring_boot</artifactId>
<version>${prometheus.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.prometheus</groupId>
<artifactId>simpleclient_hotspot</artifactId>
<version>${prometheus.version}</version>
</dependency>
<dependency>
<groupId>io.prometheus</groupId>
<artifactId>simpleclient_servlet</artifactId>
<version>${prometheus.version}</version>
</dependency>
<dependency>
<groupId>io.prometheus</groupId>
<artifactId>simpleclient_spring_web</artifactId>
<version>0.3.0</version>
</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>