Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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-openaire_dli-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>/dli</path>
23
					<port>8080</port>
24
				</configuration>
25
				<version>2.1</version>
26
			</plugin>
27
		</plugins>
28
	</build>
29

    
30

    
31
	<dependencies>
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
		<dependency>
39
			<groupId>eu.dnetlib</groupId>
40
			<artifactId>cnr-enabling-services</artifactId>
41
			<version>[2.0.0,3.0.0)</version>
42
		</dependency>
43
		<dependency>
44
			<groupId>eu.dnetlib</groupId>
45
			<artifactId>cnr-mongo-mdstore</artifactId>
46
			<version>[4.0.0,5.0.0)</version>
47
		</dependency>
48
		<dependency>
49
			<groupId>eu.dnetlib</groupId>
50
			<artifactId>cnr-enabling-inspector</artifactId>
51
			<version>[2.0.0,3.0.0)</version>
52
		</dependency>
53
		<dependency>
54
			<groupId>eu.dnetlib</groupId>
55
			<artifactId>dnet-datasource-manager-service</artifactId>
56
			<version>[1.0.0,2.0.0)</version>
57
		</dependency>
58

    
59
		<!-- Common services in every container -->
60
		<dependency>
61
			<groupId>eu.dnetlib</groupId>
62
			<artifactId>cnr-enabling-hnm-service</artifactId>
63
			<version>[2.0.0,3.0.0)</version>
64
		</dependency>
65
		<dependency>
66
			<groupId>eu.dnetlib</groupId>
67
			<artifactId>cnr-enabling-hcm-service</artifactId>
68
			<version>[2.0.0,3.0.0)</version>
69
		</dependency>
70
		<dependency>
71
			<groupId>eu.dnetlib</groupId>
72
			<artifactId>cnr-resultset-inspector</artifactId>
73
			<version>[2.0.0,3.0.0)</version>
74
		</dependency>
75

    
76
		<!-- Manager Service Resource Orchestration (required for workflows) -->
77
		<dependency>
78
			<groupId>eu.dnetlib</groupId>
79
			<artifactId>dnet-msro-service</artifactId>
80
			<version>[3.0.0,4.0.0)</version>
81
		</dependency>
82

    
83
		<!-- Jochen Transformator -->
84
		<dependency>
85
			<groupId>eu.dnetlib</groupId>
86
			<artifactId>dnet-data-transformation-service</artifactId>
87
			<version>[2.0.0]</version>
88
		</dependency>
89

    
90
		<dependency>
91
			<groupId>eu.dnetlib</groupId>
92
			<artifactId>unibi-data-collective-transformation-common</artifactId>
93
			<version>[2.0.0]</version>
94
		</dependency>
95

    
96
		<!-- Modular UIs -->
97
		<dependency>
98
			<groupId>eu.dnetlib</groupId>
99
			<artifactId>dnet-modular-workflows-ui</artifactId>
100
			<version>[4.0.0, 5.0.0)</version>
101
		</dependency>
102
		<dependency>
103
			<groupId>eu.dnetlib</groupId>
104
			<artifactId>dnet-modular-repositories-ui</artifactId>
105
			<version>[4.0.0, 5.0.0)</version>
106
		</dependency>
107
		<dependency>
108
			<groupId>eu.dnetlib</groupId>
109
			<artifactId>dnet-modular-lightui-ui</artifactId>
110
			<version>[2.0.0,3.0.0)</version>
111
		</dependency>
112
		<dependency>
113
			<groupId>eu.dnetlib</groupId>
114
			<artifactId>dnet-modular-vocabularies-ui</artifactId>
115
			<version>[2.0.0,3.0.0)</version>
116
		</dependency>
117
		<dependency>
118
			<groupId>eu.dnetlib</groupId>
119
			<artifactId>dnet-modular-is-ui</artifactId>
120
			<version>[2.0.0,3.0.0)</version>
121
		</dependency>
122
		<dependency>
123
			<groupId>eu.dnetlib</groupId>
124
			<artifactId>dnet-modular-index-ui</artifactId>
125
			<version>[2.0.0,3.0.0)</version>
126
		</dependency>
127
		<dependency>
128
			<groupId>eu.dnetlib</groupId>
129
			<artifactId>dnet-oai-modular-ui</artifactId>
130
			<version>[3.0.0,4.0.0)</version>
131
		</dependency>
132

    
133

    
134
		<!-- DATA LITERARATURE INTERLINKING MODULES -->
135
		<dependency>
136
			<groupId>eu.dnetlib</groupId>
137
			<artifactId>dnet-openaire_dli-profiles</artifactId>
138
			<version>[1.0.0,2.0.0)</version>
139
		</dependency>
140
		<dependency>
141
			<groupId>eu.dnetlib</groupId>
142
			<artifactId>dnet-openaire_dli-workflows</artifactId>
143
			<version>[1.0.0,2.0.0)</version>
144
		</dependency>
145

    
146

    
147
		<!-- OAI publisher -->
148
		<dependency>
149
			<groupId>eu.dnetlib</groupId>
150
			<artifactId>dnet-oai-common-workflows</artifactId>
151
			<version>[3.0.0,4.0.0)</version>
152
		</dependency>
153
		<dependency>
154
			<groupId>eu.dnetlib</groupId>
155
			<artifactId>cnr-data-information-oai-publisher</artifactId>
156
			<version>[6.0.0-SNAPSHOT, 7.0.0-SNAPSHOT)</version>
157
		</dependency>
158

    
159
		<!-- Log service -->
160
		<dependency>
161
			<groupId>eu.dnetlib</groupId>
162
			<artifactId>dnet-mongo-logging</artifactId>
163
			<version>[1.0.0,2.0.0)</version>
164
		</dependency>
165

    
166

    
167
		<dependency>
168
			<groupId>eu.dnetlib</groupId>
169
			<artifactId>dnet-schemas</artifactId>
170
			<version>[1.0.0,2.0.0)</version>
171
		</dependency>
172

    
173
		<!-- Harvesting service -->
174
		<dependency>
175
			<groupId>eu.dnetlib</groupId>
176
			<artifactId>dnet-modular-collector-service</artifactId>
177
			<version>[3.0.0,4.0.0)</version>
178
		</dependency>
179

    
180
		<!-- Index  service -->
181
		<dependency>
182
			<groupId>eu.dnetlib</groupId>
183
			<artifactId>dnet-index-solr-service</artifactId>
184
			<version>2.3.0</version>
185
		</dependency>
186

    
187
		<dependency>
188
			<groupId>eu.dnetlib</groupId>
189
			<artifactId>dnet-modular-index-ui</artifactId>
190
			<version>[2.0.0,3.0.0)</version>
191
		</dependency>
192

    
193

    
194
		<!-- Monitoring -->
195
		<dependency>
196
			<groupId>eu.dnetlib</groupId>
197
			<artifactId>dnet-webapp-monitoring</artifactId>
198
			<version>[1.0.0,2.0.0)</version>
199
		</dependency>
200

    
201

    
202
		<!-- Security -->
203
		<!--       <dependency> -->
204
		<!-- 			<groupId>eu.dnetlib</groupId> -->
205
		<!-- 			<artifactId>cnr-inspector-security</artifactId> -->
206
		<!-- 			<version>[1.0.0,2.0.0)</version> -->
207
		<!-- 		</dependency> -->
208

    
209
		<dependency>
210
			<groupId>xerces</groupId>
211
			<artifactId>xercesImpl</artifactId>
212
			<version>2.11.0</version>
213
		</dependency>
214
	</dependencies>
215
</project>
    (1-1/1)