Project

General

Profile

Task #1503 » pom.xml

POM to download the dataminer dependencies - Andrea Dell'Amico, Dec 05, 2015 08:01 PM

 
1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
	<modelVersion>4.0.0</modelVersion>
4
	<parent>
5
		<artifactId>maven-parent</artifactId>
6
		<groupId>org.gcube.tools</groupId>
7
		<version>1.0.0</version>
8
		<relativePath />
9
	</parent>
10
	<groupId>org.gcube.dataanalysis</groupId>
11
	<artifactId>dataminer</artifactId>
12
	<version>1.0.0-SNAPSHOT</version>
13
	<name>dataminer</name>
14
	<description>dataminer</description>
15
	<properties>
16
		<distroDirectory>${project.basedir}/distro</distroDirectory>
17
	</properties>
18
	<dependencies>
19
      <dependency>
20
			<groupId>org.gcube.common</groupId>
21
			<artifactId>common-authorization</artifactId>
22
			<scope>provided</scope>
23
		</dependency>
24
		<dependency>
25
			<groupId>org.gcube.common</groupId>
26
			<artifactId>authorization-client</artifactId>
27
			<scope>provided</scope>
28
		</dependency>
29
		<dependency>
30
			<groupId>ch.qos.logback</groupId>
31
			<artifactId>logback-classic</artifactId>
32
			<version>1.1.2</version>
33
		</dependency>
34
		<dependency>
35
			<groupId>org.n52.wps</groupId>
36
			<artifactId>52n-wps-io</artifactId>
37
			<version>[3.3.1,4.0.0)</version>
38
			<exclusions>
39
				<exclusion>
40
					<artifactId>slf4j-api</artifactId>
41
					<groupId>org.slf4j</groupId>
42
				</exclusion>
43
			</exclusions>
44
		</dependency>
45
		<dependency>
46
			<groupId>org.n52.wps</groupId>
47
			<artifactId>52n-wps-io-impl</artifactId>
48
			<version>[3.3.1,4.0.0)</version>
49
			<exclusions>
50
				<exclusion>
51
					<artifactId>slf4j-api</artifactId>
52
					<groupId>org.slf4j</groupId>
53
				</exclusion>
54
			</exclusions>
55
		</dependency>
56
		<dependency>
57
			<groupId>org.n52.wps</groupId>
58
			<artifactId>52n-wps-algorithm</artifactId>
59
			<version>[3.3.1,4.0.0)</version>
60
			<exclusions>
61
				<exclusion>
62
					<artifactId>slf4j-api</artifactId>
63
					<groupId>org.slf4j</groupId>
64
				</exclusion>
65
			</exclusions>
66
		</dependency>
67
		<dependency>
68
			<groupId>org.n52.wps</groupId>
69
			<artifactId>52n-wps-server</artifactId>
70
			<version>[3.3.1,4.0.0)</version>
71
			<exclusions>
72
				<exclusion>
73
					<artifactId>slf4j-api</artifactId>
74
					<groupId>org.slf4j</groupId>
75
				</exclusion>
76
			</exclusions>
77
		</dependency>
78
		<!-- <dependency> <groupId>org.gcube.dataanalysis</groupId> <artifactId>ecological-engine</artifactId> 
79
			<version>[1.8.5-SNAPSHOT,2.0.0-SNAPSHOT)</version> <exclusions> <exclusion> 
80
			<artifactId>slf4j-log4j12</artifactId> <groupId>org.slf4j</groupId> </exclusion> 
81
			</exclusions> </dependency> -->
82
		<dependency>
83
			<groupId>org.gcube.dataanalysis</groupId>
84
			<artifactId>ecological-engine-wps-extension</artifactId>
85
			<version>[1.0.2-SNAPSHOT,2.0.0-SNAPSHOT)</version>
86
			<exclusions>
87
				<exclusion>
88
					<artifactId>slf4j-api</artifactId>
89
					<groupId>org.slf4j</groupId>
90
				</exclusion>
91
			</exclusions>
92
		</dependency>
93
		<dependency>
94
			<groupId>org.gcube.dataanalysis</groupId>
95
			<artifactId>ecological-engine-geospatial-extensions</artifactId>
96
			<version>[1.3.2-SNAPSHOT,2.0.0-SNAPSHOT)</version>
97
			<exclusions>
98
				<exclusion>
99
					<artifactId>slf4j-api</artifactId>
100
					<groupId>org.slf4j</groupId>
101
				</exclusion>
102
			</exclusions>
103
		</dependency>
104
		<dependency>
105
			<groupId>org.gcube.dataanalysis</groupId>
106
			<artifactId>ecological-engine-external-algorithms</artifactId>
107
			<version>[1.1.5-SNAPSHOT,2.0.0-SNAPSHOT)</version>
108
			<exclusions>
109
				<exclusion>
110
					<artifactId>slf4j-api</artifactId>
111
					<groupId>org.slf4j</groupId>
112
				</exclusion>
113
				<exclusion>
114
					<artifactId>common-utils-encryption</artifactId>
115
					<groupId>org.gcube.core</groupId>
116
				</exclusion>
117
			</exclusions>
118
		</dependency>
119
		<dependency>
120
			<groupId>org.gcube.dataanalysis</groupId>
121
			<artifactId>ecological-engine-smart-executor</artifactId>
122
			<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
123
			<exclusions>
124
				<exclusion>
125
					<artifactId>slf4j-api</artifactId>
126
					<groupId>org.slf4j</groupId>
127
				</exclusion>
128
			</exclusions>
129
		</dependency>
130
		<dependency>
131
			<groupId>org.slf4j</groupId>
132
			<artifactId>slf4j-nop</artifactId>
133
			<version>1.7.10</version>
134
		</dependency>
135
		<dependency>
136
			<groupId>junit</groupId>
137
			<artifactId>junit</artifactId>
138
			<version>4.11</version>
139
			<!-- <scope>test</scope> -->
140
		</dependency>
141
		<dependency>
142
			<groupId>org.gcube.common</groupId>
143
			<artifactId>common-authorization</artifactId>
144
			<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
145
			<scope>provided</scope>
146
		</dependency>
147
		<dependency>
148
			<groupId>org.gcube.core</groupId>
149
			<artifactId>common-scope</artifactId>
150
			<version>[1.2.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
151
			<scope>provided</scope>
152
		</dependency>
153
	  </dependencies>
154
      <dependencyManagement>
155
		<dependencies>
156
			<dependency>
157
				<groupId>org.gcube.distribution</groupId>
158
				<artifactId>maven-smartgears-bom</artifactId>
159
				<version>LATEST</version>
160
				<type>pom</type>
161
				<scope>import</scope>
162
			</dependency>
163
		</dependencies>
164
	</dependencyManagement>
165
	<build>
166
		<plugins>
167
			<plugin>
168
				<artifactId>maven-compiler-plugin</artifactId>
169
				<version>3.1</version>
170
				<configuration>
171
					<source>1.6</source>
172
					<target>1.6</target>
173
				</configuration>
174
			</plugin>
175
			<plugin>
176
				<groupId>org.apache.maven.plugins</groupId>
177
				<artifactId>maven-surefire-plugin</artifactId>
178
				<version>2.18.1</version>
179
				<configuration>
180
					<skipTests>true</skipTests>
181
				</configuration>
182
			</plugin>
183
			<plugin>
184
				<groupId>org.apache.maven.plugins</groupId>
185
				<artifactId>maven-resources-plugin</artifactId>
186
				<version>2.7</version>
187
				<executions>
188
					<execution>
189
						<id>copy-profile</id>
190
						<phase>install</phase>
191
						<goals>
192
							<goal>copy-resources</goal>
193
						</goals>
194
						<configuration>
195
							<outputDirectory>target</outputDirectory>
196
							<resources>
197
								<resource>
198
									<directory>${distroDirectory}</directory>
199
									<filtering>true</filtering>
200
									<includes>
201
										<include>profile.xml</include>
202
									</includes>
203
								</resource>
204
							</resources>
205
						</configuration>
206
					</execution>
207
				</executions>
208
			</plugin>
209
			<plugin>
210
				<groupId>org.apache.maven.plugins</groupId>
211
				<artifactId>maven-assembly-plugin</artifactId>
212
				<version>2.5.3</version>
213
				<configuration>
214
					<descriptors>
215
						<descriptor>${distroDirectory}/descriptor.xml</descriptor>
216
					</descriptors>
217
				</configuration>
218
				<executions>
219
					<execution>
220
						<id>servicearchive</id>
221
						<phase>install</phase>
222
						<goals>
223
							<goal>single</goal>
224
						</goals>
225
					</execution>
226
				</executions>
227
			</plugin>
228
		</plugins>
229
	</build>
230
	<repositories>
231
		<repository>
232
			<id>n52-releases</id>
233
			<name>52n Releases</name>
234
			<url>http://52north.org/maven/repo/releases</url>
235
			<releases>
236
				<enabled>true</enabled>
237
			</releases>
238
			<snapshots>
239
				<enabled>true</enabled>
240
			</snapshots>
241
		</repository>
242
	</repositories>
243
</project>
(1-1/2)
Add picture from clipboard (Maximum size: 8.91 MB)