Sleds/scorewalker/pom.xml

76 lines
2.6 KiB
XML

<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>com.sequencelogic</groupId>
<artifactId>masterbuild</artifactId>
<version>2.3.0</version>
<!-- relative path must be specified to pick up parent pom changes, otherwise
the parent POM must first be installed in the local repo -->
<relativePath>../masterbuild</relativePath>
</parent>
<properties>
<jdk.version>1.8</jdk.version>
</properties>
<organization>
<name>Sequencelogic, LLC</name>
<url>http://www.sequencelogic.net</url>
</organization>
<contributors>
<contributor>
<name>Chris Diesch</name>
<email>cdiesch@sequencelogic.net</email>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Dave Gustafson</name>
<email>daveg@sequencelogic.net</email>
<roles>
<role>Developer</role>
</roles>
</contributor>
</contributors>
<artifactId>scorewalker</artifactId>
<packaging>pom</packaging>
<name>ScoreWalker</name>
<description>A parent pom for the Scorewalker classification program.</description>
<modules>
<module>../classification</module>
<module>../scorewalker-utils/SLClustering</module>
<module>walker-common</module>
<module>walker-classifier</module>
<module>walker-indexer</module>
<module>walker-analysis</module>
<module>L6-classifier</module>
<module>walker-term-diff</module>
<module>deployment</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<show>private</show>
<bottom>Copyright &#169; 2015&#x2013;2017 Sequence Logic LLC All rights reserved</bottom>
<aggregate>true</aggregate>
</configuration>
<executions>
<execution>
<goals>
<goal>aggregate-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>