blob: 5e68953f5eda1d52e3362d20df0f518961d0ffa6 [file] [log] [blame]
<?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>
<groupId>org.apache.mahout</groupId>
<artifactId>mahout-parent</artifactId>
<version>1.0</version>
<relativePath>./maven</relativePath>
</parent>
<groupId>org.apache.mahout</groupId>
<artifactId>mahout</artifactId>
<version>0.1</version>
<packaging>pom</packaging>
<name>Apache Lucene Mahout</name>
<description>Scalable machine learning libraries</description>
<modules>
<module>core</module>
<module>taste-web</module>
<module>examples</module>
</modules>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>project</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- append to the packaging phase. -->
<goals>
<goal>single</goal> <!-- goals == mojos -->
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-doap-plugin</artifactId>
<version>1.0</version>
<configuration>
<about>Apache Mahout is a machine learning library written in Java and designed to scale by using Apache Hadoop and other high performance techniques.</about>
<doapOptions>
<programmingLanguage>java</programmingLanguage>
<category>library</category>
</doapOptions>
<asfExtOptions>
<included>true</included>
<charter>Apache Mahout is a machine learning library written in Java and designed to scale by using Apache Hadoop and other high performance techniques.</charter>
<pmc>http://lucene.apache.org</pmc>
</asfExtOptions>
</configuration>
<executions>
<execution>
<id>gen</id>
<phase>package</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:svn:https://svn.apache.org/repos/asf/lucene/mahout/tags/mahout-0.1</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/lucene/mahout/tags/mahout-0.1</developerConnection>
<url>scm:svn:https://svn.apache.org/repos/asf/lucene/mahout/tags/mahout-0.1</url>
</scm>
</project>