-
Notifications
You must be signed in to change notification settings - Fork 560
/
pom.xml
326 lines (322 loc) · 10.4 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Share H2O-parent POM -->
<parent>
<groupId>ai.h2o</groupId>
<artifactId>h2o-classic-parent</artifactId>
<version>2.5</version>
</parent>
<!-- This artifact setup.
NOTE: groupId, version are inherited from parent POM
-->
<artifactId>h2o-classic</artifactId>
<packaging>jar</packaging>
<name>H2O Classic Core</name>
<version>2.9-SNAPSHOT</version>
<description>A core of distributed platform for large data analysis.</description>
<!-- List of build properties. -->
<properties>
<!-- Default compile time version of Hadoop client: in H2O lib-directory structured referenced as cdh3. -->
<h2o.hadoop.version>0.20.2-cdh3u6</h2o.hadoop.version>
</properties>
<!-- Repositories -->
<repositories>
<!-- Cloudera release repository -->
<repository>
<id>cloudera-releases</id>
<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<!-- Project dependencies -->
<dependencies>
<!-- = Test dependencies = -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
<!-- = Compile time dependencies = -->
<!-- == Apache dependencies == -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.15</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>mail</artifactId>
<groupId>javax.mail</groupId>
</exclusion>
<exclusion>
<artifactId>jms</artifactId>
<groupId>javax.jms</groupId>
</exclusion>
<exclusion>
<artifactId>jmxtools</artifactId>
<groupId>com.sun.jdmk</groupId>
</exclusion>
<exclusion>
<artifactId>jmxri</artifactId>
<groupId>com.sun.jmx</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- ===Apache math3 dependency=== -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.2</version>
</dependency>
<!-- ==Google dependencies== -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>12.0.1</version>
<scope>compile</scope>
</dependency>
<!-- NOTE: this dependency is intentionally disabled since it is a specific
version of gson library with renamed classes. -->
<!--
<dependency>
<groupId>ai.h2o.gson</groupId>
<artifactId>gson</artifactId>
<version>2.3</version>
<scope>provided</scope>
</dependency>-->
<!-- ==Jama is given explicitely - it was modified and compiled by @tomas == -->
<dependency>
<groupId>gov.nist.math</groupId>
<artifactId>jama</artifactId>
<version>1.0.3</version>
<scope>compile</scope>
</dependency>
<!-- ==POI dependencies== -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.8</version>
<scope>compile</scope>
</dependency>
<!-- ==jets3t dependencies== -->
<dependency>
<groupId>net.java.dev.jets3t</groupId>
<artifactId>jets3t</artifactId>
<version>0.6.1</version>
<scope>compile</scope>
</dependency>
<!-- ==Java AWS SDK dependencies== -->
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
<version>1.3.27</version>
<scope>compile</scope>
</dependency>
<!-- ==Javassist dependency -->
<dependency>
<groupId>ai.h2o</groupId>
<artifactId>javassist</artifactId>
<version>3.18.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<!-- ==Jogamp dependencies for NN== -->
<!--<dependency>
<groupId>org.jogamp.gluegen</groupId>
<artifactId>gluegen-rt-main</artifactId>
<version>2.0.2-rc12</version>
<scope>compile</scope>
</dependency>-->
<dependency>
<groupId>org.jogamp.jocl</groupId>
<artifactId>jocl</artifactId>
<version>2.0.2-rc12</version>
</dependency>
<!-- ==Hadoop core dependencies== -->
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<version>${h2o.hadoop.version}</version>
<scope>compile</scope>
</dependency>
<!-- ==Joda time dependencies== -->
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.3</version>
</dependency>
<!-- ==json.org== -->
<dependency>
<groupId>org.codeartisans</groupId>
<artifactId>org.json</artifactId>
<version>20131017</version>
</dependency>
<!-- ==tachyon== -->
<dependency>
<groupId>org.tachyonproject</groupId>
<artifactId>tachyon</artifactId>
<version>0.4.1-thrift</version>
<exclusions>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jsp</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<!-- Configure build -->
<build>
<defaultGoal>package</defaultGoal>
<resources>
<resource>
<directory>lib/resources/</directory>
<targetPath>resources/</targetPath>
</resource>
</resources>
<!-- Setup plugins for this POM and all kids POMs. -->
<pluginManagement>
<plugins>
<!-- Configure creation of source package. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<id>create-source-jar</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Configure invocation of tests. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.4</version>
<configuration>
<!-- FIXME: we still have no proper JUnit runner for H2O tests -->
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<!-- Plugins activation and setup -->
<plugins>
<!-- unpack gson library into classes to force packaging of the library into resulting jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>prepare</id>
<phase>validate</phase>
<configuration>
<tasks>
<echo message="prepare phase" />
<unzip src="${project.basedir}/lib/gson/gson-2.3.jar" dest="${project.build.directory}/classes" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- FIXME: DatasetCompare serves as a sandbox for Tomas. It should be
user private and removed! -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<excludes>
<exclude>water/fvec/DatasetCompare.java</exclude>
</excludes>
</configuration>
</plugin>
<!-- By default generate source jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- By default generate javadoc jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Publish test-jar since it contains TestUtils for writing H2O tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- TODO: have profiles for each end-user: Mr. Jenkins, developer, ... -->
</project>