1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
4
|
<modelVersion>4.0.0</modelVersion>
|
5
|
|
6
|
<parent>
|
7
|
<groupId>org.springframework.boot</groupId>
|
8
|
<artifactId>spring-boot-starter-parent</artifactId>
|
9
|
<version>1.4.4.RELEASE</version>
|
10
|
</parent>
|
11
|
|
12
|
<artifactId>dnet-springboot-apps</artifactId>
|
13
|
<groupId>eu.dnetlib</groupId>
|
14
|
<packaging>pom</packaging>
|
15
|
<version>0.0.1-SNAPSHOT</version>
|
16
|
<name>D-Net Spring Boot Applications</name>
|
17
|
<description>D-Net Spring Boot Applications</description>
|
18
|
<url>http://www.d-net.research-infrastructures.eu</url>
|
19
|
<organization>
|
20
|
<name>ISTI-CNR</name>
|
21
|
<url>http://www.isti.cnr.it</url>
|
22
|
</organization>
|
23
|
|
24
|
<properties>
|
25
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
26
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
27
|
<main.basedir>${basedir}/..</main.basedir>
|
28
|
<java.version>1.8</java.version>
|
29
|
<springboot.version>1.4.5.RELEASE</springboot.version>
|
30
|
</properties>
|
31
|
|
32
|
<modules>
|
33
|
<module>dnet-common-utils</module>
|
34
|
<module>dnet-is-application</module>
|
35
|
<module>dnet-simple-aggregation-worker</module>
|
36
|
<module>dnet-administration-uis</module>
|
37
|
</modules>
|
38
|
|
39
|
<dependencies>
|
40
|
<dependency>
|
41
|
<groupId>org.springframework.boot</groupId>
|
42
|
<artifactId>spring-boot-starter-web</artifactId>
|
43
|
</dependency>
|
44
|
|
45
|
<dependency>
|
46
|
<groupId>org.springframework.boot</groupId>
|
47
|
<artifactId>spring-boot-starter-aop</artifactId>
|
48
|
</dependency>
|
49
|
|
50
|
<dependency>
|
51
|
<groupId>org.springframework.boot</groupId>
|
52
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
53
|
</dependency>
|
54
|
|
55
|
<dependency>
|
56
|
<groupId>org.springframework.boot</groupId>
|
57
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
58
|
<optional>true</optional>
|
59
|
</dependency>
|
60
|
|
61
|
<dependency>
|
62
|
<groupId>org.springframework.boot</groupId>
|
63
|
<artifactId>spring-boot-starter-test</artifactId>
|
64
|
<scope>test</scope>
|
65
|
</dependency>
|
66
|
|
67
|
<dependency>
|
68
|
<groupId>junit</groupId>
|
69
|
<artifactId>junit</artifactId>
|
70
|
<scope>test</scope>
|
71
|
</dependency>
|
72
|
|
73
|
<dependency>
|
74
|
<groupId>eu.dnetlib</groupId>
|
75
|
<artifactId>dnet-common-utils</artifactId>
|
76
|
<version>1.0.0-SNAPSHOT</version>
|
77
|
</dependency>
|
78
|
|
79
|
</dependencies>
|
80
|
|
81
|
<build>
|
82
|
<plugins>
|
83
|
<plugin>
|
84
|
<groupId>org.springframework.boot</groupId>
|
85
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
86
|
</plugin>
|
87
|
</plugins>
|
88
|
</build>
|
89
|
|
90
|
</project>
|