1 |
45605
|
michele.ar
|
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
45608
|
michele.ar
|
<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 |
45605
|
michele.ar
|
<modelVersion>4.0.0</modelVersion>
|
5 |
|
|
|
6 |
|
|
<parent>
|
7 |
|
|
<groupId>org.springframework.boot</groupId>
|
8 |
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
9 |
45853
|
michele.ar
|
<version>1.4.4.RELEASE</version>
|
10 |
45605
|
michele.ar
|
</parent>
|
11 |
|
|
|
12 |
|
|
<artifactId>dnet-springboot-apps</artifactId>
|
13 |
|
|
<groupId>eu.dnetlib</groupId>
|
14 |
|
|
<packaging>pom</packaging>
|
15 |
45608
|
michele.ar
|
<version>0.0.1-SNAPSHOT</version>
|
16 |
45605
|
michele.ar
|
<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 |
45608
|
michele.ar
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
27 |
45605
|
michele.ar
|
<main.basedir>${basedir}/..</main.basedir>
|
28 |
|
|
<java.version>1.8</java.version>
|
29 |
46211
|
claudio.at
|
<springboot.version>1.4.5.RELEASE</springboot.version>
|
30 |
45605
|
michele.ar
|
</properties>
|
31 |
|
|
|
32 |
|
|
<modules>
|
33 |
|
|
<module>dnet-common-utils</module>
|
34 |
|
|
<module>dnet-is-application</module>
|
35 |
|
|
<module>dnet-simple-aggregation-worker</module>
|
36 |
45670
|
michele.ar
|
<module>dnet-administration-uis</module>
|
37 |
45605
|
michele.ar
|
</modules>
|
38 |
|
|
|
39 |
45615
|
michele.ar
|
<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 |
46211
|
claudio.at
|
<artifactId>spring-boot-starter-aop</artifactId>
|
48 |
|
|
</dependency>
|
49 |
|
|
|
50 |
|
|
<dependency>
|
51 |
|
|
<groupId>org.springframework.boot</groupId>
|
52 |
46492
|
claudio.at
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
53 |
|
|
</dependency>
|
54 |
|
|
|
55 |
|
|
<dependency>
|
56 |
|
|
<groupId>org.springframework.boot</groupId>
|
57 |
45615
|
michele.ar
|
<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 |
46975
|
michele.ar
|
|
81 |
45615
|
michele.ar
|
<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 |
45605
|
michele.ar
|
</project>
|