<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.8</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>
