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-eagle-container</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>[1.0.0,2.0.0)</version>
44
		</dependency>
45
		<dependency>
46
			<groupId>eu.dnetlib</groupId>
47
			<artifactId>cnr-enabling-hcm-service</artifactId>
48
			<version>[1.0.0,2.0.0)</version>
49
			<exclusions>
50
				<exclusion>
51
					<artifactId>spring-core</artifactId>
52
					<groupId>org.springframework</groupId>
53
				</exclusion>
54
			</exclusions>
55
		</dependency>
56

    
57
		<dependency>
58
			<groupId>eu.dnetlib</groupId>
59
			<artifactId>cnr-resultset-inspector</artifactId>
60
			<version>[1.0.0,2.0.0)</version>
61
		</dependency>
62

    
63
		<!-- Enabling services service -->
64
		<dependency>
65
			<groupId>eu.dnetlib</groupId>
66
			<artifactId>cnr-enabling-services</artifactId>
67
			<version>[1.0.0,2.0.0)</version>
68
			<exclusions>
69
				<exclusion>
70
					<artifactId>spring-core</artifactId>
71
					<groupId>org.springframework</groupId>
72
				</exclusion>
73
			</exclusions>
74
		</dependency>
75
		<dependency>
76
			<groupId>eu.dnetlib</groupId>
77
			<artifactId>cnr-enabling-inspector</artifactId>
78
			<version>[1.0.0,2.0.0)</version>
79
		</dependency>
80

    
81
		<!-- Manager Service Resource Orchestration (required for workflows) -->
82
		<dependency>
83
			<groupId>eu.dnetlib</groupId>
84
			<artifactId>dnet-msro-service</artifactId>
85
			<version>[1.0.0,2.0.0)</version>
86
		</dependency>
87

    
88
		<!-- Modular UIs -->
89
		<dependency>
90
			<groupId>eu.dnetlib</groupId>
91
			<artifactId>dnet-modular-ui</artifactId>
92
			<version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
93
		</dependency>
94
		<dependency>
95
			<groupId>eu.dnetlib</groupId>
96
			<artifactId>dnet-modular-workflows-ui</artifactId>
97
			<version>[2.1.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
98
		</dependency>
99
		<dependency>
100
			<groupId>eu.dnetlib</groupId>
101
			<artifactId>dnet-modular-repositories-ui</artifactId>
102
			<version>[2.1.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
103
		</dependency>
104
		<dependency>
105
			<groupId>eu.dnetlib</groupId>
106
			<artifactId>dnet-modular-lightui-ui</artifactId>
107
			<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
108
		</dependency>
109
		<dependency>
110
			<groupId>eu.dnetlib</groupId>
111
			<artifactId>dnet-modular-vocabularies-ui</artifactId>
112
			<version>[1.0.1-SNAPSHOT,2.0.0-SNAPSHOT)</version>
113
		</dependency>
114
		<dependency>
115
			<groupId>eu.dnetlib</groupId>
116
			<artifactId>dnet-modular-is-ui</artifactId>
117
			<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
118
		</dependency>
119

    
120
		<!-- Log service -->
121
		<dependency>
122
			<groupId>eu.dnetlib</groupId>
123
			<artifactId>dnet-mongo-logging</artifactId>
124
			<version>[1.0.0,2.0.0)</version>
125
		</dependency>
126

    
127
		<!-- EAGLE container profiles and workflows -->
128
		<dependency>
129
			<groupId>eu.dnetlib</groupId>
130
			<artifactId>dnet-eagle-workflows</artifactId>
131
			<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
132
		</dependency>
133
		<dependency>
134
			<groupId>eu.dnetlib</groupId>
135
			<artifactId>dnet-eagle-profiles</artifactId>
136
			<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
137
		</dependency>
138

    
139
		<dependency>
140
			<groupId>eu.dnetlib</groupId>
141
			<artifactId>dnet-schemas</artifactId>
142
			<version>[1.0.0-SNAPSHOT,)</version>
143
		</dependency>
144
		
145
		<!-- MDStore service -->
146
		<dependency>
147
			<groupId>eu.dnetlib</groupId>
148
			<artifactId>cnr-mongo-mdstore</artifactId>
149
			<version>[3.0.0-SNAPSHOT,4.0.0-SNAPSHOT)</version>
150
		</dependency>
151

    
152
		<dependency>
153
			<groupId>eu.dnetlib</groupId>
154
			<artifactId>dnet-modular-collector-service</artifactId>
155
			<version>[1.2.0-SNAPSHOT,)</version>
156
		</dependency>
157

    
158
		<dependency>
159
			<groupId>eu.dnetlib</groupId>
160
			<artifactId>dnet-index-solr-service</artifactId>
161
			<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
162
		</dependency>
163

    
164
		<dependency>
165
			<groupId>eu.dnetlib</groupId>
166
			<artifactId>dnet-modular-index-ui</artifactId>
167
			<version>1.0.0-SNAPSHOT</version>
168
		</dependency>
169

    
170
		<dependency>
171
			<groupId>xerces</groupId>
172
			<artifactId>xercesImpl</artifactId>
173
			<version>2.11.0</version>
174
		</dependency>
175

    
176
		<dependency>
177
			<groupId>eu.dnetlib</groupId>
178
			<artifactId>dnet-download-service</artifactId>
179
			<version>[1.0.0-SNAPSHOT]</version>
180
		</dependency>
181

    
182
		<dependency>
183
			<groupId>eu.dnetlib</groupId>
184
			<artifactId>dnet-gridfs-objectstore</artifactId>
185
			<version>[2.0.0-SNAPSHOT]</version>
186
		</dependency>
187

    
188
		<!-- OAI publisher -->
189
		<dependency>
190
			<groupId>eu.dnetlib</groupId>
191
			<artifactId>dnet-oai-common-workflows</artifactId>
192
			<version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
193
		</dependency>
194
		<dependency>
195
			<groupId>eu.dnetlib</groupId>
196
			<artifactId>dnet-oai-modular-ui</artifactId>
197
			<version>[2.0.0-SNAPSHOT]</version>
198
		</dependency>
199
		<dependency>
200
			<groupId>eu.dnetlib</groupId>
201
			<artifactId>dnet-modular-oai-explorer-ui</artifactId>
202
			<version>[1.0-SNAPSHOT]</version>
203
		</dependency>
204
		<dependency>
205
			<groupId>eu.dnetlib</groupId>
206
			<artifactId>cnr-data-information-oai-publisher</artifactId>
207
			<version>[3.0.0-SNAPSHOT]</version>
208
			<exclusions>
209
				<exclusion>
210
					<artifactId>spring-core</artifactId>
211
					<groupId>org.springframework</groupId>
212
				</exclusion>
213
			</exclusions>
214
		</dependency>
215
		
216
		<dependency>
217
			<groupId>org.springframework.security</groupId>
218
			<artifactId>spring-security-web</artifactId>
219
			<version>3.2.5.RELEASE</version>
220
			<exclusions>
221
				<exclusion>
222
					<artifactId>spring-core</artifactId>
223
					<groupId>org.springframework</groupId>
224
				</exclusion>
225
			</exclusions>
226
		</dependency>
227
		<dependency>
228
			<groupId>org.springframework.security</groupId>
229
			<artifactId>spring-security-config</artifactId>
230
			<version>3.2.5.RELEASE</version>
231
			<exclusions>
232
				<exclusion>
233
					<artifactId>spring-core</artifactId>
234
					<groupId>org.springframework</groupId>
235
				</exclusion>
236
			</exclusions>
237
		</dependency>
238
		<dependency>
239
			<groupId>org.springframework</groupId>
240
			<artifactId>spring-context</artifactId>
241
			<version>${spring.version}</version>
242
			<exclusions>
243
				<exclusion>
244
					<artifactId>spring-core</artifactId>
245
					<groupId>org.springframework</groupId>
246
				</exclusion>
247
			</exclusions>
248
		</dependency>
249
		<dependency>
250
			<groupId>org.springframework</groupId>
251
			<artifactId>spring-tx</artifactId>
252
			<version>${spring.version}</version>
253
			<exclusions>
254
				<exclusion>
255
					<artifactId>spring-core</artifactId>
256
					<groupId>org.springframework</groupId>
257
				</exclusion>
258
			</exclusions>
259
		</dependency>
260

    
261
	</dependencies>
262
</project>
    (1-1/1)