73 lines
2.0 KiB
XML
73 lines
2.0 KiB
XML
|
<?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">
|
||
|
|
||
|
<parent>
|
||
|
<groupId>eu.dnetlib</groupId>
|
||
|
<artifactId>apps</artifactId>
|
||
|
<version>3.0.0-SNAPSHOT</version>
|
||
|
</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>
|
||
|
<dependency>
|
||
|
<groupId>org.thymeleaf.extras</groupId>
|
||
|
<artifactId>thymeleaf-extras-springsecurity4</artifactId>
|
||
|
<version>3.0.4.RELEASE</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.postgresql</groupId>
|
||
|
<artifactId>postgresql</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.vladmihalcea</groupId>
|
||
|
<artifactId>hibernate-types-52</artifactId>
|
||
|
<version>2.3.5</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- hot swapping, disable cache for template, enable live reload -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-devtools</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Swagger -->
|
||
|
<dependency>
|
||
|
<groupId>io.springfox</groupId>
|
||
|
<artifactId>springfox-swagger2</artifactId>
|
||
|
<version>2.9.2</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>io.springfox</groupId>
|
||
|
<artifactId>springfox-swagger-ui</artifactId>
|
||
|
<version>2.9.2</version>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
|
||
|
</project>
|