Project

General

Profile

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/maven-v4_0_0.xsd">
4
	<parent>
5
		<groupId>eu.dnetlib</groupId>
6
		<artifactId>dnet-container-parent</artifactId>
7
		<version>1.0.0-SNAPSHOT</version>
8
		<relativePath></relativePath>
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>dnet-container-data</artifactId>
13
	<packaging>war</packaging>
14
	<version>1.0.0-SNAPSHOT</version>
15
	<dependencies>	    
16
	
17
		<!-- Common components in every container -->
18
		<dependency>
19
			<groupId>eu.dnetlib</groupId>
20
			<artifactId>cnr-log4j-inspector</artifactId>
21
			<version>[1.0.0,2.0.0)</version>
22
		</dependency>
23

    
24
		<!-- Common services in every container -->
25
		<dependency>
26
			<groupId>eu.dnetlib</groupId>
27
			<artifactId>cnr-enabling-hnm-service</artifactId>
28
			<version>[1.0.0,2.0.0)</version>
29
		</dependency>
30
		<dependency>
31
			<groupId>eu.dnetlib</groupId>
32
			<artifactId>cnr-enabling-hcm-service</artifactId>
33
			<version>[1.0.0,2.0.0)</version>
34
		</dependency>
35

    
36
		<dependency>
37
			<groupId>eu.dnetlib</groupId>
38
			<artifactId>cnr-resultset-service</artifactId>
39
			<version>[1.0.0,2.0.0)</version>
40
		</dependency>
41
		<dependency>
42
			<groupId>eu.dnetlib</groupId>
43
			<artifactId>cnr-resultset-inspector</artifactId>
44
			<version>[1.0.0,2.0.0)</version>
45
		</dependency>
46
		
47
	<!-- Inspector security -->
48
		<dependency>
49
			<groupId>eu.dnetlib</groupId>
50
			<artifactId>cnr-inspector-security</artifactId>
51
			<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
52
		</dependency>
53
		<dependency>
54
			<groupId>eu.dnetlib</groupId>
55
			<artifactId>dnet-webapp-monitoring</artifactId>
56
			<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
57
		</dependency>		
58
	    <dependency>
59
	        <groupId>eu.dnetlib</groupId>
60
	        <artifactId>cnr-mongo-mdstore</artifactId>
61
	        <version>[3.0.0,4.0.0)</version>
62
	    </dependency>
63
	    <dependency>
64
	        <groupId>eu.dnetlib</groupId>
65
	        <artifactId>dnet-modular-collector-service</artifactId>
66
	        <version>[1.2.0,2.0.0)</version>
67
	    </dependency>
68
	    <dependency>
69
	        <groupId>eu.dnetlib</groupId>
70
	        <artifactId>dnet-gridfs-objectstore</artifactId>
71
	        <version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
72
	    </dependency>
73
	    <dependency>
74
	        <groupId>eu.dnetlib</groupId>
75
	        <artifactId>dnet-data-transformation-service</artifactId>
76
	        <version>[1.0.0,2.0.0)</version>
77
	    </dependency>
78
	    <dependency>
79
	        <groupId>eu.dnetlib</groupId>
80
	        <artifactId>cnr-data-utility-cleaner-service</artifactId>
81
	        <version>[2.0.0,3.0.0)</version>
82
	    </dependency>	  
83
	    <dependency>
84
			<groupId>xerces</groupId>
85
			<artifactId>xercesImpl</artifactId>
86
			<version>2.11.0</version>
87
			<scope>compile</scope>
88
		</dependency>
89
		<dependency>
90
			<groupId>xalan</groupId>
91
			<artifactId>xalan</artifactId>
92
			<version>2.7.1</version>
93
		</dependency>
94
		<dependency>
95
			<groupId>eu.dnetlib</groupId>
96
			<artifactId>dnet-download-service</artifactId>
97
			<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
98
		</dependency>
99
		<dependency>
100
			<groupId>eu.dnetlib</groupId>
101
			<artifactId>dnet-download-plugins</artifactId>
102
			<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
103
		</dependency>
104
	</dependencies>
105
    <properties>
106
        <dnet.container.context>data</dnet.container.context>
107
        <dnet.container.port>8880</dnet.container.port>
108
    </properties>
109
</project>
    (1-1/1)