forked from h2oai/h2o-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
124 lines (117 loc) · 4.31 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
<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>
<!-- Support OSS sonatype snapshot/release management -->
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<!-- This is H2O parent project for sharing common settings cross H2O build stack -->
<groupId>ai.h2o</groupId>
<artifactId>h2o-parent</artifactId>
<version>2.5-SNAPSHOT</version>
<packaging>pom</packaging>
<name>H2O Project Parent POM</name>
<description>H2O - the distributed platform for large data analysis.</description>
<url>http://h2o.ai/</url>
<organization>
<name>0xdata</name>
<url>http://h2o.ai/</url>
</organization>
<inceptionYear>2013</inceptionYear>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- We support only new version of Mave -->
<prerequisites>
<maven>3.0.0</maven>
</prerequisites>
<!-- List of common build properties. -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Java version used by javac for -source/-target parameters.-->
<h2o.java.version>1.6</h2o.java.version>
</properties>
<!-- GitHub is H2O primary SCM -->
<scm>
<connection>scm:git:https://github.com/0xdata/h2o.git</connection>
<developerConnection>scm:git:[email protected]:0xdata/h2o.git</developerConnection>
<url>https://github.com/0xdata/h2o</url>
</scm>
<!-- Public H2O JIRA for issue management -->
<issueManagement>
<system>jira</system>
<url>http://jira.0xdata.com/</url>
</issueManagement>
<!-- Pre-configure build dependencies -->
<build>
<!-- Setup plugins for this POM and all kids POMs. -->
<pluginManagement>
<plugins>
<!-- Enforce compiler version - see http://stackoverflow.com/questions/3138384/java-warning-build-path-specifies-execution-environment-j2se-1-4 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${h2o.java.version}</source>
<target>${h2o.java.version}</target>
<verbose>false</verbose>
<compilerArgs>
<arg>-XDignore.symbol.file</arg>
<arg>-Xlint:all</arg>
<arg>-Xlint:-deprecation</arg>
<arg>-Xlint:-serial</arg>
<arg>-Xlint:-rawtypes</arg>
<arg>-Xlint:-unchecked</arg>
</compilerArgs>
</configuration>
</plugin>
<!-- Enfore the Java version -->
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.3</version>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>${h2o.java.version}</version>
</requireJavaVersion>
</rules>
</configuration>
</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>
<!-- Uses scalatest instead -->
<skipTests>${h2o.skipTests}</skipTests>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<!-- Add S3 wagoon for uploading artifacts into S3 repository. -->
<extensions>
<extension>
<groupId>org.springframework.build.aws</groupId>
<artifactId>org.springframework.build.aws.maven</artifactId>
<version>3.0.0.RELEASE</version>
</extension>
</extensions>
</build>
</project>