blob: 4e35f111af2a48134aa022790c74a4ac06112b87 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.mahout</groupId>
<artifactId>mahout</artifactId>
<version>14.2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>mahout-native-viennacl-omp_${scala.compat.version}</artifactId>
<name>- Mahout ViennaCL OpenMP BLAS (Experimental)</name>
<description>Native Structures and interfaces to be used from Mahout math-scala.
</description>
<packaging>jar</packaging>
<!-- per http://www.apache.org/dev/publishing-maven-artifacts.html#prepare-poms ensure that all poms have SCM managment.-->
<!--
<scm>
<connection>scm:git:git@github.com:apache/mahout.git</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/mahout.git</developerConnection>
<url>https://gitbox.apache.org/repos/asf?p=mahout.git;a=tree;h=refs/heads/${project.scm.tag};hb=${project.scm.tag}</url>
<tag>mahout-14.1
</tag>
</scm>
-->
<build>
<plugins>
<!-- ensure licenses -->
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
</plugin>
<!-- create test jar so other modules can reuse the native test utility classes. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<executions>
<execution>
<id>add-scala-sources</id>
<phase>initialize</phase>
<goals>
<goal>add-source</goal>
</goals>
</execution>
<execution>
<id>scala-compile</id>
<phase>process-resources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>scala-test-compile</id>
<phase>process-test-resources</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<!--this is what scalatest recommends to do to enable scala tests -->
<!-- disable surefire -->
<!-- disable surefire -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<!-- enable scalatest -->
<plugin>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-maven-plugin</artifactId>
<executions>
<execution>
<id>test</id>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<argLine>-Xmx4g</argLine>
</configuration>
</plugin>
<!--JavaCPP native build plugin-->
<!-- old-style way to get it to compile. -->
<!--based on https://github.com/bytedeco/javacpp/wiki/Maven-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>javacpp</id>
<phase>process-classes</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<environmentVariables>
<LD_LIBRARY_PATH>{project.basedir}/target/classes/org/apache/mahout/javacpp/linalg/linux-x86_64/
</LD_LIBRARY_PATH>
</environmentVariables>
<executable>java</executable>
<arguments>
<argument>-jar</argument>
<argument>${org.bytedeco:javacpp:jar}</argument>
<argument>-propertyfile</argument>
<argument>linux-x86_64-viennacl.properties</argument>
<argument>-classpath</argument>
<argument>${project.build.outputDirectory}:${org.scala-lang:scala-library:jar}</argument>
<argument>org.apache.mahout.viennacl.openmp.javacpp.CompressedMatrix</argument>
<argument>org.apache.mahout.viennacl.openmp.javacpp.Context</argument>
<argument>org.apache.mahout.viennacl.openmp.javacpp.MatrixBase</argument>
<argument>org.apache.mahout.viennacl.openmp.javacpp.DenseRowMatrix</argument>
<argument>org.apache.mahout.viennacl.openmp.javacpp.DenseColumnMatrix</argument>
<argument>org.apache.mahout.viennacl.openmp.javacpp.MatMatProdExpression</argument>
<argument>org.apache.mahout.viennacl.openmp.javacpp.ProdExpression</argument>
<argument>org.apache.mahout.viennacl.openmp.javacpp.MatrixTransExpression</argument>
<argument>org.apache.mahout.viennacl.openmp.javacpp.LinalgFunctions</argument>
<argument>org.apache.mahout.viennacl.openmp.javacpp.Functions</argument>
<argument>org.apache.mahout.viennacl.openmp.javacpp.VectorBase</argument>
<argument>org.apache.mahout.viennacl.openmp.javacpp.VCLVector</argument>
<argument>org.apache.mahout.viennacl.openmp.javacpp.VecMultExpression</argument>
<argument>org.apache.mahout.viennacl.openmp.OMPMMul</argument>
<argument>org.apache.mahout.viennacl.openmp.OMPMMul$</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<goals>
<goal>properties</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
</plugin>
<!-- copy jars to top directory, which is MAHOUT_HOME -->
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>copy</id>
<phase>package</phase>
<configuration>
<tasks>
<copy file="target/mahout-native-viennacl-omp_${scala.compat.version}-${version}.jar" tofile="../../lib/mahout-native-viennacl-omp_${scala.compat.version}-${version}.jar" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- delete jars on cleen in top directory, which is MAHOUT_HOME -->
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<filesets>
<fileset>
<directory>../../lib</directory>
<includes>
<include>mahout-native-viennacl-omp*.jar</include>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>core_${scala.compat.version}</artifactId>
<version>${project.version}</version>
</dependency>
<!-- 3rd-party -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<!-- scala stuff -->
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_${scala.compat.version}</artifactId>
</dependency>
<!-- scala-library for annotations at compile time-->
<!--<dependency>-->
<!--<groupId>org.scala-lang</groupId>-->
<!--<artifactId>scala-library</artifactId>-->
<!--<version>${scala.version}</version>-->
<!--</dependency>-->
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp</artifactId>
<version>1.2.4</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>mahout-release</id>
<build>
<plugins>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-scaladoc</id>
<goals>
<goal>doc</goal>
</goals>
</execution>
<execution>
<id>attach-scaladoc-jar</id>
<goals>
<goal>doc-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>travis</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- Limit memory for unit tests in Travis -->
<argLine>-Xmx3g</argLine>
<!--<argLine>-Djava.library.path=${project.build.directory}/libs/natives/linux-x86_64:${project.build.directory}/libs/natives/linux:${project.build.directory}/libs/natives/maxosx</argLine>-->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<!-- Limit memory for integration tests in Travis -->
<argLine>-Xmx3g</argLine>
<!--<argLine>-Djava.library.path=${project.build.directory}/libs/natives/linux-x86_64:${project.build.directory}/libs/natives/linux:${project.build.directory}/libs/natives/maxosx</argLine>-->
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>