Project

General

Profile

1 26600 sandro.lab
<?xml version="1.0" encoding="UTF-8"?>
2 40879 andrea.man
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3 26600 sandro.lab
	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 41536 alessia.ba
		<version>1.0.0-SNAPSHOT</version>
8 26600 sandro.lab
		<relativePath></relativePath>
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>dnet-eagle-container</artifactId>
13
	<packaging>war</packaging>
14 32736 michele.ar
	<version>2.0.0-SNAPSHOT</version>
15 26600 sandro.lab
	<build>
16
		<plugins>
17
			<plugin>
18
				<groupId>org.apache.tomcat.maven</groupId>
19
				<artifactId>tomcat7-maven-plugin</artifactId>
20
				<configuration>
21
					<path>/app</path>
22
					<port>8280</port>
23
				</configuration>
24
				<version>2.1</version>
25
			</plugin>
26
		</plugins>
27
	</build>
28
29
	<dependencies>
30
		<!-- Common components in every container -->
31
		<dependency>
32
			<groupId>eu.dnetlib</groupId>
33
			<artifactId>cnr-log4j-inspector</artifactId>
34 40922 andrea.man
			<version>[1.0.0, 2.0.0)</version>
35 26600 sandro.lab
		</dependency>
36
		<dependency>
37
			<groupId>eu.dnetlib</groupId>
38 32736 michele.ar
			<artifactId>cnr-enabling-services</artifactId>
39 40922 andrea.man
			<version>[2.0.0, 3.0.0)</version>
40 26600 sandro.lab
		</dependency>
41
		<dependency>
42 32736 michele.ar
	        <groupId>eu.dnetlib</groupId>
43
	        <artifactId>cnr-mongo-mdstore</artifactId>
44 40922 andrea.man
	        <version>[4.0.0, 5.0.0)</version>
45 32736 michele.ar
	    </dependency>
46
		<dependency>
47 26600 sandro.lab
			<groupId>eu.dnetlib</groupId>
48 32736 michele.ar
			<artifactId>cnr-enabling-inspector</artifactId>
49 40922 andrea.man
			<version>[2.0.0, 3.0.0)</version>
50 26600 sandro.lab
		</dependency>
51 32736 michele.ar
		<dependency>
52 33960 andrea.man
			<groupId>eu.dnetlib</groupId>
53
			<artifactId>dnet-datasource-manager-service</artifactId>
54 40922 andrea.man
			<version>[1.0.0, 2.0.0)</version>
55 33960 andrea.man
		</dependency>
56
		<dependency>
57 32736 michele.ar
			<groupId>xalan</groupId>
58
			<artifactId>xalan</artifactId>
59
			<version>2.7.1</version>
60
		</dependency>
61 26600 sandro.lab
62 32736 michele.ar
		<!-- Common services in every container -->
63 26600 sandro.lab
		<dependency>
64
			<groupId>eu.dnetlib</groupId>
65 32736 michele.ar
			<artifactId>cnr-enabling-hnm-service</artifactId>
66 40922 andrea.man
			<version>[2.0.0, 3.0.0)</version>
67 26600 sandro.lab
		</dependency>
68
		<dependency>
69
			<groupId>eu.dnetlib</groupId>
70 32736 michele.ar
			<artifactId>cnr-enabling-hcm-service</artifactId>
71 40922 andrea.man
			<version>[2.0.0, 3.0.0)</version>
72 26600 sandro.lab
		</dependency>
73
		<dependency>
74
			<groupId>eu.dnetlib</groupId>
75 32736 michele.ar
			<artifactId>cnr-resultset-inspector</artifactId>
76 40922 andrea.man
			<version>[2.0.0, 3.0.0)</version>
77 26600 sandro.lab
		</dependency>
78
79
		<!-- Manager Service Resource Orchestration (required for workflows) -->
80 28964 andrea.man
		<dependency>
81
			<groupId>eu.dnetlib</groupId>
82
			<artifactId>dnet-msro-service</artifactId>
83 40922 andrea.man
			<version>[3.0.0, 4.0.0)</version>
84 28964 andrea.man
		</dependency>
85 31974 andrea.man
86
		<!-- Jochen Transformator -->
87
		<dependency>
88
			<groupId>eu.dnetlib</groupId>
89
			<artifactId>dnet-data-transformation-service</artifactId>
90 36640 andrea.man
			<version>[2.0.0]</version>
91 31974 andrea.man
		</dependency>
92 36640 andrea.man
		<dependency>
93
			<groupId>eu.dnetlib</groupId>
94
			<artifactId>unibi-data-collective-transformation-common</artifactId>
95 38476 andrea.man
			<version>[2.1.1]</version>
96 36640 andrea.man
		</dependency>
97 26600 sandro.lab
98 30118 sandro.lab
		<!-- Modular UIs -->
99 26600 sandro.lab
		<dependency>
100
			<groupId>eu.dnetlib</groupId>
101 28964 andrea.man
			<artifactId>dnet-modular-workflows-ui</artifactId>
102 33960 andrea.man
			<version>[4.0.0, 5.0.0)</version>
103 28964 andrea.man
		</dependency>
104 26600 sandro.lab
		<dependency>
105
			<groupId>eu.dnetlib</groupId>
106
			<artifactId>dnet-modular-repositories-ui</artifactId>
107 33960 andrea.man
			<version>[4.0.0, 5.0.0)</version>
108 26600 sandro.lab
		</dependency>
109 30118 sandro.lab
		<dependency>
110
			<groupId>eu.dnetlib</groupId>
111
			<artifactId>dnet-modular-lightui-ui</artifactId>
112 40922 andrea.man
			<version>[2.0.0, 3.0.0)</version>
113 30118 sandro.lab
		</dependency>
114 30979 andrea.man
		<dependency>
115
			<groupId>eu.dnetlib</groupId>
116
			<artifactId>dnet-modular-vocabularies-ui</artifactId>
117 40922 andrea.man
			<version>[2.0.0, 3.0.0)</version>
118 30979 andrea.man
		</dependency>
119
		<dependency>
120
			<groupId>eu.dnetlib</groupId>
121
			<artifactId>dnet-modular-is-ui</artifactId>
122 40922 andrea.man
			<version>[2.0.0, 3.0.0)</version>
123 30979 andrea.man
		</dependency>
124 40922 andrea.man
		<dependency>
125
			<groupId>eu.dnetlib</groupId>
126
			<artifactId>dnet-objectStore-ui</artifactId>
127
			<version>[1.0.0,2.0.0)</version>
128
			<exclusions>
129
				<exclusion>
130
					<groupId>eu.dnetlib</groupId>
131
					<artifactId>dnet-modular-objectstore-service</artifactId>
132
				</exclusion>
133
			</exclusions>
134
		</dependency>
135 26600 sandro.lab
136
		<!-- Log service -->
137
		<dependency>
138
			<groupId>eu.dnetlib</groupId>
139
			<artifactId>dnet-mongo-logging</artifactId>
140 40922 andrea.man
			<version>[1.0.0, 2.0.0)</version>
141 26600 sandro.lab
		</dependency>
142
143 27302 andrea.man
		<!-- EAGLE container profiles and workflows -->
144 26600 sandro.lab
		<dependency>
145
			<groupId>eu.dnetlib</groupId>
146
			<artifactId>dnet-eagle-workflows</artifactId>
147 40922 andrea.man
			<version>[3.0.0, 4.0.0)</version>
148 26600 sandro.lab
		</dependency>
149
		<dependency>
150
			<groupId>eu.dnetlib</groupId>
151
			<artifactId>dnet-eagle-profiles</artifactId>
152 40922 andrea.man
			<version>[1.0.0, 2.0.0)</version>
153 26600 sandro.lab
		</dependency>
154
		<dependency>
155
			<groupId>eu.dnetlib</groupId>
156
			<artifactId>dnet-schemas</artifactId>
157 40922 andrea.man
			<version>[1.0.0, 2.0.0)</version>
158 26600 sandro.lab
		</dependency>
159
		<dependency>
160
			<groupId>eu.dnetlib</groupId>
161 32736 michele.ar
			<artifactId>dnet-modular-collector-service</artifactId>
162 40922 andrea.man
			<version>[3.0.0, 4.0.0)</version>
163 26600 sandro.lab
		</dependency>
164
		<dependency>
165
			<groupId>eu.dnetlib</groupId>
166 30118 sandro.lab
			<artifactId>dnet-index-solr-service</artifactId>
167 41536 alessia.ba
			<version>[2.0.0, 2.9.9]</version>
168 26600 sandro.lab
		</dependency>
169 41536 alessia.ba
170 26600 sandro.lab
		<dependency>
171
			<groupId>eu.dnetlib</groupId>
172 30118 sandro.lab
			<artifactId>dnet-modular-index-ui</artifactId>
173 40922 andrea.man
			<version>[2.0.0, 3.0.0)</version>
174 26600 sandro.lab
		</dependency>
175 31745 andrea.man
		<dependency>
176
			<groupId>eu.dnetlib</groupId>
177
			<artifactId>dnet-modular-oai-explorer-ui</artifactId>
178 40922 andrea.man
			<version>[2.0.0, 3.0.0)</version>
179 31745 andrea.man
		</dependency>
180
		<dependency>
181
			<groupId>eu.dnetlib</groupId>
182
			<artifactId>dnet-oai-modular-ui</artifactId>
183 32736 michele.ar
			<version>[3.0.0, 4.0.0)</version>
184 31745 andrea.man
		</dependency>
185 26600 sandro.lab
		<dependency>
186
			<groupId>xerces</groupId>
187
			<artifactId>xercesImpl</artifactId>
188
			<version>2.11.0</version>
189
		</dependency>
190
		<dependency>
191
			<groupId>eu.dnetlib</groupId>
192
			<artifactId>dnet-download-service</artifactId>
193 40922 andrea.man
			<version>[2.0.0, 3.0.0)</version>
194 26600 sandro.lab
		</dependency>
195
		<dependency>
196
			<groupId>eu.dnetlib</groupId>
197
			<artifactId>dnet-gridfs-objectstore</artifactId>
198 40922 andrea.man
			<version>[4.0.3-TAG]</version>
199 26600 sandro.lab
		</dependency>
200 30118 sandro.lab
201 27302 andrea.man
		<!-- OAI publisher -->
202 27574 andrea.man
		<dependency>
203
			<groupId>eu.dnetlib</groupId>
204 29921 andrea.man
			<artifactId>dnet-oai-common-workflows</artifactId>
205 40922 andrea.man
			<version>[3.0.0, 4.0.0)</version>
206 27574 andrea.man
		</dependency>
207
		<dependency>
208
			<groupId>eu.dnetlib</groupId>
209
			<artifactId>cnr-data-information-oai-publisher</artifactId>
210 40922 andrea.man
			<version>[6.0.0, 7.0.0)</version>
211 27574 andrea.man
		</dependency>
212 31635 andrea.man
213
		<!-- Security -->
214 30148 andrea.man
		<dependency>
215
			<groupId>org.springframework.security</groupId>
216
			<artifactId>spring-security-web</artifactId>
217
			<version>3.2.5.RELEASE</version>
218
			<exclusions>
219
				<exclusion>
220
					<artifactId>spring-core</artifactId>
221
					<groupId>org.springframework</groupId>
222
				</exclusion>
223
			</exclusions>
224
		</dependency>
225
		<dependency>
226
			<groupId>org.springframework.security</groupId>
227
			<artifactId>spring-security-config</artifactId>
228
			<version>3.2.5.RELEASE</version>
229
			<exclusions>
230
				<exclusion>
231
					<artifactId>spring-core</artifactId>
232
					<groupId>org.springframework</groupId>
233
				</exclusion>
234
			</exclusions>
235
		</dependency>
236
		<dependency>
237
			<groupId>org.springframework</groupId>
238
			<artifactId>spring-context</artifactId>
239
			<version>${spring.version}</version>
240
		</dependency>
241
		<dependency>
242
			<groupId>org.springframework</groupId>
243
			<artifactId>spring-tx</artifactId>
244
			<version>${spring.version}</version>
245
		</dependency>
246 40879 andrea.man
247
		<!-- Monitoring -->
248
		<dependency>
249
			<groupId>eu.dnetlib</groupId>
250
			<artifactId>dnet-webapp-monitoring</artifactId>
251 40922 andrea.man
			<version>[1.0.0, 2.0.0)</version>
252 40879 andrea.man
		</dependency>
253 26600 sandro.lab
	</dependencies>
254
</project>