2020-07-03 12:09:22 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-07-13 08:50:53 +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-03 12:09:22 +02:00
|
|
|
|
|
|
|
<parent>
|
2020-07-08 09:54:54 +02:00
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
2020-07-03 12:09:22 +02:00
|
|
|
<artifactId>apps</artifactId>
|
2023-05-12 09:40:00 +02:00
|
|
|
<version>3.4.3-SNAPSHOT</version>
|
2020-07-08 09:54:54 +02:00
|
|
|
<relativePath>../</relativePath>
|
2020-07-03 12:09:22 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>dnet-orgs-database-application</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
2020-11-04 10:30:29 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-oauth2-client</artifactId>
|
|
|
|
</dependency>
|
2020-07-03 12:09:22 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.thymeleaf.extras</groupId>
|
2020-07-29 11:31:18 +02:00
|
|
|
<artifactId>thymeleaf-extras-springsecurity5</artifactId>
|
2020-07-03 12:09:22 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.vladmihalcea</groupId>
|
|
|
|
<artifactId>hibernate-types-52</artifactId>
|
|
|
|
</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>
|
|
|
|
|
2021-07-01 10:51:55 +02:00
|
|
|
<!-- CSV -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.opencsv</groupId>
|
|
|
|
<artifactId>opencsv</artifactId>
|
|
|
|
<version>5.4</version>
|
|
|
|
</dependency>
|
2020-07-27 11:18:21 +02:00
|
|
|
|
2020-07-03 12:09:22 +02:00
|
|
|
<!-- hot swapping, disable cache for template, enable live reload -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</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-07-03 12:09:22 +02:00
|
|
|
</dependencies>
|
|
|
|
|
2020-07-27 10:07:07 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2021-05-11 12:28:20 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-help-plugin</artifactId>
|
|
|
|
</plugin>
|
2020-07-27 10:07:07 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-07-03 12:09:22 +02:00
|
|
|
|
|
|
|
</project>
|