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
		</dependency>
50

    
51
		<dependency>
52
			<groupId>eu.dnetlib</groupId>
53
			<artifactId>cnr-resultset-inspector</artifactId>
54
			<version>[1.0.0,2.0.0)</version>
55
		</dependency>
56

    
57
		<!-- Enabling services service -->
58
		<dependency>
59
			<groupId>eu.dnetlib</groupId>
60
			<artifactId>cnr-enabling-services</artifactId>
61
			<version>[1.0.0,2.0.0)</version>
62
		</dependency>
63
		<dependency>
64
			<groupId>eu.dnetlib</groupId>
65
			<artifactId>cnr-enabling-inspector</artifactId>
66
			<version>[1.0.0,2.0.0)</version>
67
		</dependency>
68

    
69
		<!-- Manager Service Resource Orchestration (required for workflows) -->
70
		<dependency>
71
			<groupId>eu.dnetlib</groupId>
72
			<artifactId>dnet-msro-service</artifactId>
73
			<version>[1.0.0,2.0.0)</version>
74
		</dependency>
75
		
76
		<!-- Jochen Transformator -->
77
		<dependency>
78
			<groupId>eu.dnetlib</groupId>
79
			<artifactId>dnet-data-transformation-service</artifactId>
80
			<version>[1.0.0,2.0.0)</version>
81
		</dependency>
82

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

    
115
		<!-- Log service -->
116
		<dependency>
117
			<groupId>eu.dnetlib</groupId>
118
			<artifactId>dnet-mongo-logging</artifactId>
119
			<version>[1.0.0,2.0.0)</version>
120
		</dependency>
121

    
122
		<!-- EAGLE container profiles and workflows -->
123
		<dependency>
124
			<groupId>eu.dnetlib</groupId>
125
			<artifactId>dnet-eagle-workflows</artifactId>
126
			<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
127
		</dependency>
128
		<dependency>
129
			<groupId>eu.dnetlib</groupId>
130
			<artifactId>dnet-eagle-profiles</artifactId>
131
			<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
132
		</dependency>
133

    
134
		<dependency>
135
			<groupId>eu.dnetlib</groupId>
136
			<artifactId>dnet-schemas</artifactId>
137
			<version>[1.0.0,)</version>
138
		</dependency>
139

    
140
		<!-- MDStore service -->
141
		<dependency>
142
			<groupId>eu.dnetlib</groupId>
143
			<artifactId>cnr-mongo-mdstore</artifactId>
144
			<version>[3.0.0,4.0.0)</version>
145
		</dependency>
146

    
147
		<dependency>
148
			<groupId>eu.dnetlib</groupId>
149
			<artifactId>dnet-modular-collector-service</artifactId>
150
			<version>[1.2.0,)</version>
151
		</dependency>
152

    
153
		<dependency>
154
			<groupId>eu.dnetlib</groupId>
155
			<artifactId>dnet-index-solr-service</artifactId>
156
			<version>[1.0.0,2.0.0)</version>
157
		</dependency>
158

    
159
		<dependency>
160
			<groupId>eu.dnetlib</groupId>
161
			<artifactId>dnet-modular-index-ui</artifactId>
162
			<version>[1.0.0,)</version>
163
		</dependency>
164
		
165
		<dependency>
166
			<groupId>eu.dnetlib</groupId>
167
			<artifactId>dnet-modular-oai-explorer-ui</artifactId>
168
			<version>[1.0.0,)</version>
169
		</dependency>
170
		
171
		<dependency>
172
			<groupId>eu.dnetlib</groupId>
173
			<artifactId>dnet-oai-modular-ui</artifactId>
174
			<version>[2.0.0,3.0.0)</version>
175
		</dependency>
176

    
177
		<dependency>
178
			<groupId>xerces</groupId>
179
			<artifactId>xercesImpl</artifactId>
180
			<version>2.11.0</version>
181
		</dependency>
182

    
183
		<dependency>
184
			<groupId>eu.dnetlib</groupId>
185
			<artifactId>dnet-download-service</artifactId>
186
			<version>[1.0.0,)</version>
187
		</dependency>
188

    
189
		<dependency>
190
			<groupId>eu.dnetlib</groupId>
191
			<artifactId>dnet-gridfs-objectstore</artifactId>
192
			<version>[3.0.0,4.0.0)</version>
193
		</dependency>
194

    
195
		<!-- OAI publisher -->
196
		<dependency>
197
			<groupId>eu.dnetlib</groupId>
198
			<artifactId>dnet-oai-common-workflows</artifactId>
199
			<version>[2.0.0]</version>
200
		</dependency>
201
		<dependency>
202
			<groupId>eu.dnetlib</groupId>
203
			<artifactId>cnr-data-information-oai-publisher</artifactId>
204
			<version>[4.0.0,5.0.0)</version>
205
		</dependency>
206

    
207
		<!-- Security -->
208
		<dependency>
209
			<groupId>org.springframework.security</groupId>
210
			<artifactId>spring-security-web</artifactId>
211
			<version>3.2.5.RELEASE</version>
212
			<exclusions>
213
				<exclusion>
214
					<artifactId>spring-core</artifactId>
215
					<groupId>org.springframework</groupId>
216
				</exclusion>
217
			</exclusions>
218
		</dependency>
219
		<dependency>
220
			<groupId>org.springframework.security</groupId>
221
			<artifactId>spring-security-config</artifactId>
222
			<version>3.2.5.RELEASE</version>
223
			<exclusions>
224
				<exclusion>
225
					<artifactId>spring-core</artifactId>
226
					<groupId>org.springframework</groupId>
227
				</exclusion>
228
			</exclusions>
229
		</dependency>
230
		<dependency>
231
			<groupId>org.springframework</groupId>
232
			<artifactId>spring-context</artifactId>
233
			<version>${spring.version}</version>
234
		</dependency>
235
		<dependency>
236
			<groupId>org.springframework</groupId>
237
			<artifactId>spring-tx</artifactId>
238
			<version>${spring.version}</version>
239
		</dependency>
240

    
241
	</dependencies>
242
</project>
    (1-1/1)