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</version>
8
		<relativePath></relativePath>
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>dnet-stdl-container-provision</artifactId>
13
	<packaging>war</packaging>
14
	<version>1.0.0-SNAPSHOT</version>
15

    
16
<!-- 	<build> -->
17
<!-- 		<plugins> -->
18
<!-- 			<plugin> -->
19
<!-- 				<groupId>org.apache.tomcat.maven</groupId> -->
20
<!-- 				<artifactId>tomcat7-maven-plugin</artifactId> -->
21
<!-- 				<configuration> -->
22
<!-- 					<path>/app</path> -->
23
<!-- 					<port>8280</port> -->
24
<!-- 				</configuration> -->
25
<!-- 				<version>2.1</version> -->
26
<!-- 			</plugin> -->
27
<!-- 		</plugins> -->
28
<!-- 	</build> -->
29

    
30
	<dependencies>
31

    
32
		<!-- Common components in every container -->
33
		<dependency>
34
			<groupId>eu.dnetlib</groupId>
35
			<artifactId>cnr-log4j-inspector</artifactId>
36
			<version>[1.0.0,2.0.0)</version>
37
		</dependency>
38

    
39
		<!-- Common services in every container -->
40
		<dependency>
41
			<groupId>eu.dnetlib</groupId>
42
			<artifactId>cnr-enabling-hnm-service</artifactId>
43
			<version>[2.0.0,3.0.0)</version>
44
		</dependency>
45
		<dependency>
46
			<groupId>eu.dnetlib</groupId>
47
			<artifactId>cnr-enabling-hcm-service</artifactId>
48
			<version>[2.0.0,3.0.0)</version>
49
		</dependency>
50

    
51
		<dependency>
52
			<groupId>eu.dnetlib</groupId>
53
			<artifactId>cnr-resultset-service</artifactId>
54
			<version>[2.0.0,3.0.0)</version>
55
		</dependency>
56
		<dependency>
57
			<groupId>eu.dnetlib</groupId>
58
			<artifactId>cnr-resultset-inspector</artifactId>
59
			<version>[2.0.0,3.0.0)</version>
60
		</dependency>
61

    
62
		<!-- Vocabulary REST publisher -->
63
<!-- 		<dependency> -->
64
<!-- 			<groupId>eu.dnetlib</groupId> -->
65
<!-- 			<artifactId>dnet-vocabulary-publisher</artifactId> -->
66
<!-- 			<version>[2.0.0,3.0.0)</version> -->
67
<!-- 		</dependency> -->
68

    
69
		<!-- OAI publisher service -->
70
		<dependency>
71
			<groupId>eu.dnetlib</groupId>
72
			<artifactId>cnr-data-information-oai-publisher</artifactId>
73
			<version>[5.0.0,6.0.0)</version>
74
		</dependency>
75

    
76
		<!-- Inspector security -->
77
		<dependency>
78
			<groupId>eu.dnetlib</groupId>
79
			<artifactId>cnr-inspector-security</artifactId>
80
			<version>[1.0.0,2.0.0)</version>
81
		</dependency>
82
		<dependency>
83
			<groupId>eu.dnetlib</groupId>
84
			<artifactId>dnet-webapp-monitoring</artifactId>
85
			<version>[1.0.0,2.0.0)</version>
86
		</dependency>
87

    
88
		<dependency>
89
			<groupId>xerces</groupId>
90
			<artifactId>xercesImpl</artifactId>
91
			<version>2.11.0</version>
92
			<scope>compile</scope>
93
		</dependency>
94

    
95
		<!-- Index service -->
96
		<dependency>
97
			<groupId>eu.dnetlib</groupId>
98
			<artifactId>dnet-index-solr-service</artifactId>
99
			<version>[2.0.0,3.0.0)</version>
100
		</dependency>
101
		
102
		<!-- adding scope=provided to avoid 'java.lang.LinkageError: loader constraint violation' -->
103
		<dependency>
104
			<groupId>org.slf4j</groupId>
105
			<artifactId>slf4j-api</artifactId>
106
			<version>1.6.1</version>
107
			<scope>provided</scope>
108
		</dependency>
109

    
110
	</dependencies>
111
	<properties>
112
		<dnet.container.context>provision</dnet.container.context>
113
		<dnet.container.port>8980</dnet.container.port>
114
	</properties>	
115

    
116
</project>
(2-2/2)