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

123 lines
3.2 KiB
XML
Raw Normal View History

2020-07-02 08:55:42 +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-07-02 11:14:28 +02:00
<parent>
<groupId>eu.dnetlib</groupId>
<artifactId>dnet-applications</artifactId>
<version>3.0.0-SNAPSHOT</version>
</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
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<hibernate.version>5.2.0.Final</hibernate.version>
<prometheus.version>0.2.0</prometheus.version>
</properties>
<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>
<!-- H2 DB -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</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>
<!-- 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</groupId>
<artifactId>dnet-openaire-broker-common</artifactId>
2020-07-02 15:33:02 +02:00
<version>[3.0.4-SNAPSHOT, 4.0.0)</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>
</project>