2021-01-25 14:16:37 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-10 13:01:26 +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">
|
2021-01-25 14:16:37 +01:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>apps</artifactId>
|
2022-06-08 14:31:36 +02:00
|
|
|
<version>3.2.8</version>
|
2022-03-29 12:13:33 +02:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2021-01-25 14:16:37 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>dhp-mdstore-manager</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<!-- Add typical dependencies for a web application -->
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-json</artifactId>
|
|
|
|
</dependency>
|
2021-02-22 16:54:23 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
</dependency>
|
2021-01-25 14:16:37 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.vladmihalcea</groupId>
|
|
|
|
<artifactId>hibernate-types-52</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
2021-01-28 15:55:22 +01:00
|
|
|
<!-- Hadoop -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-client</artifactId>
|
|
|
|
</dependency>
|
2021-07-06 13:29:38 +02:00
|
|
|
|
2021-02-18 14:28:04 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.twitter</groupId>
|
|
|
|
<artifactId>parquet-hadoop</artifactId>
|
|
|
|
<version>1.5.0-cdh5.13.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.twitter</groupId>
|
|
|
|
<artifactId>parquet-avro</artifactId>
|
|
|
|
<version>1.5.0-cdh5.13.3</version>
|
|
|
|
</dependency>
|
2021-05-10 14:07:40 +02:00
|
|
|
<!-- DHP Schemas -->
|
2021-01-25 14:16:37 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
2021-05-10 14:07:40 +02:00
|
|
|
<artifactId>dhp-schemas</artifactId>
|
2021-01-25 14:16:37 +01:00
|
|
|
</dependency>
|
|
|
|
|
2021-11-03 10:51:04 +01:00
|
|
|
<!-- Tests -->
|
2021-01-25 14:16:37 +01:00
|
|
|
<dependency>
|
2021-11-03 10:51:04 +01:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2021-01-25 14:16:37 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-11-03 10:51:04 +01:00
|
|
|
|
|
|
|
<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>
|
|
|
|
|
2021-01-25 14:16:37 +01: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>
|
2021-01-25 14:16:37 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|