Maven Repository - POM file for File moa 2012.08 2012.08

Summary

MOA: Massive Online Analysis.

Massive On-line Analysis is an environment for massive data mining. MOA provides a framework for data stream mining and includes tools for evaluation and a collection of machine learning algorithms. Related to the WEKA project, also written in Java, while scaling to more demanding problems..

Declaration

Here is the list of declaration for moa. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>nz.ac.waikato.cms.moa</groupId>
   <artifactId>moa</artifactId>
   <version>2012.08</version>
</dependency>

If you think this Maven repository POM file listing for moa is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





License

Name:GNU General Public License 3.0
URL: http://www.gnu.org/licenses/gpl-3.0.txt.

Plugin

The following plugins are used in the moa-2012.08.jar

  1. latex-maven-plugin
  2. license-maven-plugin
  3. maven-assembly-plugin
  4. maven-compiler-plugin
  5. maven-jar-plugin
  6. maven-javadoc-plugin

Packages

The following packages are defined in the moa-2012.08.jar

moa
moa.classifiers
moa.classifiers.active
moa.classifiers.bayes
moa.classifiers.core
moa.classifiers.core.attributeclassobservers
moa.classifiers.core.conditionaltests
moa.classifiers.core.driftdetection
moa.classifiers.core.splitcriteria
moa.classifiers.drift
moa.classifiers.functions
moa.classifiers.meta
moa.classifiers.multilabel
moa.classifiers.multilabel.meta
moa.classifiers.rules
moa.classifiers.trees
moa.cluster
moa.clusterers
moa.clusterers.clustream
moa.clusterers.clustree
moa.clusterers.clustree.util
moa.clusterers.denstream
moa.clusterers.streamkm
moa.core
moa.core.utils
moa.evaluation
moa.gui
moa.gui.clustertab
moa.gui.visualization
moa.options
moa.streams
moa.streams.clustering
moa.streams.filters
moa.streams.generators
moa.streams.generators.multilabel
moa.tasks
weka.classifiers.meta
weka.core
weka.datagenerators.classifiers.classification
weka.gui




POM File Source

Here is the content of the POM file.

<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>nz.ac.waikato.cms.moa</groupId>
    <artifactId>moa-pom</artifactId>
    <version>2012.08</version>
  </parent>

  <artifactId>moa</artifactId>
  <packaging>jar</packaging>

  <name>MOA: Massive Online Analysis</name>
  <description>
  Massive On-line Analysis is an environment for massive data mining. MOA
  provides a framework for data stream mining and includes tools for evaluation
  and a collection of machine learning algorithms. Related to the WEKA project,
  also written in Java, while scaling to more demanding problems.
  </description>
  <url>http://moa.cms.waikato.ac.nz/</url>
  <organization>
    <name>University of Waikato, Hamilton, NZ</name>
    <url>http://www.waikato.ac.nz/</url>
  </organization>
  <licenses>
    <license>
      <name>GNU General Public License 3.0</name>
      <url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  

  <dependencies>
    <dependency>
      <groupId>nz.ac.waikato.cms.weka</groupId>
      <artifactId>weka-dev</artifactId>
    </dependency>

    <dependency>
      <groupId>com.googlecode.sizeofag</groupId>
      <artifactId>sizeofag</artifactId>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
      </plugin>
      
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>license-maven-plugin</artifactId>
      </plugin>

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>latex-maven-plugin</artifactId>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-assembly-plugin</artifactId>
      </plugin>
    </plugins>
  </build>
</project>