1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
4
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
5
|
|
6
|
|
7
|
<modelVersion>4.0.0</modelVersion>
|
8
|
<artifactId>dnet-administration-uis</artifactId>
|
9
|
<version>0.0.1-SNAPSHOT</version>
|
10
|
<packaging>jar</packaging>
|
11
|
|
12
|
<name>dnet-administration-uis</name>
|
13
|
<description>DNet administration UIs</description>
|
14
|
|
15
|
<parent>
|
16
|
<groupId>eu.dnetlib</groupId>
|
17
|
<artifactId>dnet-springboot-apps</artifactId>
|
18
|
<version>0.0.1-SNAPSHOT</version>
|
19
|
<relativePath>../pom.xml</relativePath>
|
20
|
</parent>
|
21
|
|
22
|
<dependencies>
|
23
|
<dependency>
|
24
|
<groupId>org.springframework.boot</groupId>
|
25
|
<artifactId>spring-boot-starter-cache</artifactId>
|
26
|
</dependency>
|
27
|
</dependencies>
|
28
|
|
29
|
<properties>
|
30
|
<main.basedir>${basedir}/../..</main.basedir>
|
31
|
</properties>
|
32
|
|
33
|
|
34
|
</project>
|