2014-02-27 02:53:51 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<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 >
2014-03-05 00:10:36 +08:00
<groupId > org.broadinstitute.gatk</groupId>
<artifactId > gatk-root</artifactId>
2016-06-02 05:21:48 +08:00
<version > 3.7-SNAPSHOT</version>
2014-03-05 00:10:36 +08:00
<relativePath > ../../public/gatk-root</relativePath>
2014-02-27 02:53:51 +08:00
</parent>
2014-02-27 06:01:46 +08:00
<artifactId > VectorPairHMM</artifactId>
2014-02-27 02:53:51 +08:00
<packaging > pom</packaging>
2014-02-27 06:01:46 +08:00
<name > Vectorized PairHMM native libraries</name>
2014-02-27 02:53:51 +08:00
2014-03-05 00:10:36 +08:00
<description > Builds a GNU/Linux x86_64 library of VectorPairHMM using icc (Intel C++ compiler). During install, copies it into gatk-utils. Neither tested nor expected to work on any other platform.</description>
2014-02-27 02:53:51 +08:00
<properties >
<sourceEncoding > UTF-8</sourceEncoding>
<project.build.sourceEncoding > ${sourceEncoding}</project.build.sourceEncoding>
<project.reporting.outputEncoding > ${sourceEncoding}</project.reporting.outputEncoding>
2014-03-05 00:10:36 +08:00
<gatk.basedir > ${project.basedir}/../..</gatk.basedir>
<gatk-utils.basedir > ${gatk.basedir}/public/gatk-utils</gatk-utils.basedir>
<!-- Where to place the library in gatk - utils -->
<pairhmm.resources.directory > ${gatk-utils.basedir}/src/main/resources/org/broadinstitute/gatk/utils/pairhmm</pairhmm.resources.directory>
2014-02-27 02:53:51 +08:00
</properties>
<build >
<plugins >
2014-02-28 02:12:23 +08:00
<!-- Print out the architecture - works only on GNU/Linux x86_64 systems -->
<!-- Neither tested nor expected to work on any other platform. -->
<!-- Requires icc (Intel C++ compiler) to be in your PATH. -->
2014-02-27 02:53:51 +08:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-enforcer-plugin</artifactId>
<executions >
<execution >
<goals >
<goal > display-info</goal>
</goals>
<phase > validate</phase>
</execution>
</executions>
</plugin>
<!-- Run make -->
<plugin >
<groupId > org.codehaus.mojo</groupId>
<artifactId > exec-maven-plugin</artifactId>
<executions >
<execution >
<goals >
<goal > exec</goal>
</goals>
<phase > compile</phase>
<configuration >
<executable > make</executable>
2014-02-27 07:17:15 +08:00
<workingDirectory > src/main/c++</workingDirectory>
2014-02-27 02:53:51 +08:00
<environmentVariables >
2014-02-27 07:17:15 +08:00
<JRE_HOME > ${java.home}</JRE_HOME>
2014-03-18 02:42:19 +08:00
<!-- <USE_GCC>1</USE_GCC> -->
<!-- <C_COMPILER>/opt/gcc - 4.8.2/bin/gcc</C_COMPILER> -->
<!-- <CPP_COMPILER>/opt/gcc - 4.8.2/bin/g++</CPP_COMPILER> -->
2014-02-27 02:53:51 +08:00
<OUTPUT_DIR > ${project.build.directory}</OUTPUT_DIR>
</environmentVariables>
</configuration>
</execution>
</executions>
</plugin>
<!-- Don't actually install this artifact into the user's repo -->
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-install-plugin</artifactId>
<configuration >
<skip > true</skip>
</configuration>
</plugin>
2014-03-05 00:10:36 +08:00
<!-- Copy the built library into gatk - utils -->
2014-02-27 02:53:51 +08:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-resources-plugin</artifactId>
<executions >
<execution >
<id > default-install</id>
<goals >
<goal > copy-resources</goal>
</goals>
<phase > install</phase>
<configuration >
<outputDirectory > ${pairhmm.resources.directory}</outputDirectory>
<resources >
<resource >
<directory > ${project.build.directory}</directory>
<includes >
<include > **/*</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
2014-03-05 00:10:36 +08:00
<!-- pom.xml cleanup, always sort according to the definitions in gatk - root -->
2014-02-27 02:53:51 +08:00
<plugin >
<groupId > com.google.code.sortpom</groupId>
<artifactId > maven-sortpom-plugin</artifactId>
<configuration >
<createBackupFile > false</createBackupFile>
<predefinedSortOrder > custom_1</predefinedSortOrder>
<lineSeparator > \n</lineSeparator>
<encoding > ${sourceEncoding}</encoding>
<keepBlankLines > true</keepBlankLines>
<sortDependencies > scope</sortDependencies>
<nrOfIndentSpace > 4</nrOfIndentSpace>
<expandEmptyElements > false</expandEmptyElements>
</configuration>
</plugin>
</plugins>
</build>
</project>