Project

General

Profile

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
	</properties>
30
31
	<modules>
32
		<module>dnet-common-utils</module>
33
		<module>dnet-is-application</module>
34
		<module>dnet-simple-aggregation-worker</module>
35 45670 michele.ar
		<module>dnet-administration-uis</module>
36 45605 michele.ar
	</modules>
37
38 45615 michele.ar
	<dependencies>
39
		<dependency>
40
			<groupId>org.springframework.boot</groupId>
41
			<artifactId>spring-boot-starter-web</artifactId>
42
		</dependency>
43
44
		<dependency>
45
			<groupId>org.springframework.boot</groupId>
46
			<artifactId>spring-boot-configuration-processor</artifactId>
47
			<optional>true</optional>
48
		</dependency>
49
50
		<dependency>
51
			<groupId>org.springframework.boot</groupId>
52
			<artifactId>spring-boot-starter-test</artifactId>
53
			<scope>test</scope>
54
		</dependency>
55
56
		<dependency>
57
			<groupId>junit</groupId>
58
			<artifactId>junit</artifactId>
59
			<scope>test</scope>
60
		</dependency>
61
62
		<dependency>
63
			<groupId>eu.dnetlib</groupId>
64
			<artifactId>dnet-common-utils</artifactId>
65
			<version>1.0.0-SNAPSHOT</version>
66
		</dependency>
67
68
	</dependencies>
69
70
	<build>
71
		<plugins>
72
			<plugin>
73
				<groupId>org.springframework.boot</groupId>
74
				<artifactId>spring-boot-maven-plugin</artifactId>
75
			</plugin>
76
		</plugins>
77
	</build>
78
79 45605 michele.ar
</project>