Project

General

Profile

1 32028 andrea.man
<?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 35594 claudio.at
		<version>1.0.0</version>
8 32028 andrea.man
		<relativePath></relativePath>
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12 35835 claudio.at
	<artifactId>dnet-stdl-container-provision</artifactId>
13 32028 andrea.man
	<packaging>war</packaging>
14 35594 claudio.at
	<version>1.0.0-SNAPSHOT</version>
15 32028 andrea.man
16 35225 alessia.ba
<!-- 	<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 32028 andrea.man
30
	<dependencies>
31 35835 claudio.at
32 32028 andrea.man
		<!-- 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 35225 alessia.ba
39
		<!-- Common services in every container -->
40 32028 andrea.man
		<dependency>
41
			<groupId>eu.dnetlib</groupId>
42 35225 alessia.ba
			<artifactId>cnr-enabling-hnm-service</artifactId>
43 32759 andrea.man
			<version>[2.0.0,3.0.0)</version>
44 32028 andrea.man
		</dependency>
45 32759 andrea.man
		<dependency>
46 35225 alessia.ba
			<groupId>eu.dnetlib</groupId>
47
			<artifactId>cnr-enabling-hcm-service</artifactId>
48
			<version>[2.0.0,3.0.0)</version>
49 32759 andrea.man
		</dependency>
50 32028 andrea.man
51
		<dependency>
52
			<groupId>eu.dnetlib</groupId>
53 35835 claudio.at
			<artifactId>cnr-resultset-service</artifactId>
54 32759 andrea.man
			<version>[2.0.0,3.0.0)</version>
55 32028 andrea.man
		</dependency>
56
		<dependency>
57
			<groupId>eu.dnetlib</groupId>
58 32759 andrea.man
			<artifactId>cnr-resultset-inspector</artifactId>
59
			<version>[2.0.0,3.0.0)</version>
60 32028 andrea.man
		</dependency>
61
62 35835 claudio.at
		<!-- Vocabulary REST publisher -->
63 36323 claudio.at
<!-- 		<dependency> -->
64
<!-- 			<groupId>eu.dnetlib</groupId> -->
65
<!-- 			<artifactId>dnet-vocabulary-publisher</artifactId> -->
66
<!-- 			<version>[2.0.0,3.0.0)</version> -->
67
<!-- 		</dependency> -->
68 35225 alessia.ba
69 35835 claudio.at
		<!-- OAI publisher service -->
70 32028 andrea.man
		<dependency>
71
			<groupId>eu.dnetlib</groupId>
72 35835 claudio.at
			<artifactId>cnr-data-information-oai-publisher</artifactId>
73
			<version>[5.0.0,6.0.0)</version>
74 32028 andrea.man
		</dependency>
75 35225 alessia.ba
76 35835 claudio.at
		<!-- Inspector security -->
77 32028 andrea.man
		<dependency>
78
			<groupId>eu.dnetlib</groupId>
79 35225 alessia.ba
			<artifactId>cnr-inspector-security</artifactId>
80
			<version>[1.0.0,2.0.0)</version>
81 32028 andrea.man
		</dependency>
82
		<dependency>
83
			<groupId>eu.dnetlib</groupId>
84 35225 alessia.ba
			<artifactId>dnet-webapp-monitoring</artifactId>
85
			<version>[1.0.0,2.0.0)</version>
86 32028 andrea.man
		</dependency>
87 32778 andrea.man
88 32028 andrea.man
		<dependency>
89 35225 alessia.ba
			<groupId>xerces</groupId>
90
			<artifactId>xercesImpl</artifactId>
91
			<version>2.11.0</version>
92
			<scope>compile</scope>
93
		</dependency>
94
95
		<!-- Index service -->
96 32028 andrea.man
		<dependency>
97 35225 alessia.ba
			<groupId>eu.dnetlib</groupId>
98
			<artifactId>dnet-index-solr-service</artifactId>
99
			<version>[2.0.0,3.0.0)</version>
100 32028 andrea.man
		</dependency>
101 36323 claudio.at
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 35225 alessia.ba
110 32028 andrea.man
	</dependencies>
111 35835 claudio.at
	<properties>
112
		<dnet.container.context>provision</dnet.container.context>
113
		<dnet.container.port>8980</dnet.container.port>
114
	</properties>
115 35225 alessia.ba
116 32028 andrea.man
</project>