Maven Repository - POM file for Data Structure ci-bayes 2.0.0.RELEASE 2.0.0.RELEASE

Summary

ci-bayes.

Module for classifying data based on various Bayesian algorithms.

Declaration

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

<dependency>
   <groupId>com.enigmastation</groupId>
   <artifactId>ci-bayes</artifactId>
   <version>2.0.0.RELEASE</version>
</dependency>

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

License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.

Depends on

The ci-bayes-2.0.0.RELEASE has 16 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JEE Libraryjta 1.0.1B
The javax.transaction package. It is appropriate for inclusion in a classpath, and may be added to a Java 2 installation.
29
JPA Hibernatehibernate-entitymanager 3.3.2.GA
Hibernate Entitity Manager
12
Databasehsqldb 1.8.0.7
Lightweight 100% Java SQL Database Engine
137
Testingtestng 5.13.1
TestNG is a testing framework.
6
Developmentguava r06
Guava is a suite of core and expanded libraries that include utility classes, google's collections, io classes, and much much more. This project is a complete packaging of all the Guava libraries into a single jar. Individual portions of Guava can be used by downloading ...
18
Searchlucene-analyzers 3.0.2
Additional Analyzers
5
Buildant 1.7.0
Apache Ant
227




Plugin

The following plugins are used in the ci-bayes-2.0.0.RELEASE.jar

  1. maven-compiler-plugin
  2. maven-source-plugin
  3. maven-surefire-plugin

Packages

The following packages are defined in the ci-bayes-2.0.0.RELEASE.jar

com.enigmastation.classifier
com.enigmastation.classifier.impl
com.enigmastation.classifier.persistence
com.enigmastation.classifier.springframework
com.enigmastation.collections
com.enigmastation.extractors
com.enigmastation.extractors.impl
com.enigmastation.resolvers
com.enigmastation.resolvers.impl




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>
  <groupId>com.enigmastation</groupId>
  <artifactId>ci-bayes</artifactId>
  <packaging>jar</packaging>
  <version>2.0.0.RELEASE</version>
  <name>ci-bayes</name>
  <description>Module for classifying data based on various Bayesian algorithms</description>
  <url>https://ci-bayes.dev.java.net</url>
  <properties>
    <springVersion>3.0.3.RELEASE</springVersion>
  </properties>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <url>https://ci-bayes.dev.java.net/source/browse/ci-bayes/</url>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <!--<forkMode>pertest</forkMode> -->
          <argLine>-Xmx384m</argLine>
          <groups>normal,fulltest</groups>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-sources</id>
            <phase>verify</phase>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
    <extensions>
      <extension>
        <groupId>org.jvnet.wagon-svn</groupId>
        <artifactId>wagon-svn</artifactId>
        <version>1.9</version>
      </extension>
    </extensions>
  </build>
  <dependencies>
    <dependency>
      <groupId>commons-math</groupId>
      <artifactId>commons-math</artifactId>
      <version>1.2</version>
    </dependency>
    <dependency>
      <groupId>javax.transaction</groupId>
      <artifactId>jta</artifactId>
      <version>1.0.1B</version>
    </dependency>
    <dependency>
      <groupId>org.hibernate</groupId>
      <artifactId>hibernate-entitymanager</artifactId>
      <version>3.3.2.GA</version>
    </dependency>
    <dependency>
      <groupId>hsqldb</groupId>
      <artifactId>hsqldb</artifactId>
      <version>1.8.0.7</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <version>5.13.1</version>      
      <scope>test</scope>
    </dependency>    
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <version>r06</version>
    </dependency>
    <dependency>
      <groupId>org.apache.lucene</groupId>
      <artifactId>lucene-analyzers</artifactId>
      <version>3.0.2</version>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>${springVersion}</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-tx</artifactId>
      <version>${springVersion}</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-test</artifactId>
      <version>${springVersion}</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjrt</artifactId>
      <version>1.5.4</version>
      <scope>test</scope>      
    </dependency>
    <dependency>
      <groupId>org.apache.ant</groupId>
      <artifactId>ant</artifactId>
      <version>1.7.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>javatar</groupId>
      <artifactId>javatar</artifactId>
      <version>2.5</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.lucene</groupId>
      <artifactId>lucene-snowball</artifactId>
      <version>2.3.2</version>
    </dependency>
    <dependency>
      <groupId>rome</groupId>
      <artifactId>rome-fetcher</artifactId>
      <version>1.0RC2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>nekohtml</groupId>
      <artifactId>nekohtml</artifactId>
      <version>1.9.6.2</version>
    </dependency>
  </dependencies>
  <repositories>
    <repository>
      <id>maven2-repository.dev.java.net</id>
      <name>Java.net Repository for Maven</name>
      <url>http://download.java.net/maven/2/</url>
      <layout>default</layout>
    </repository>
  </repositories>
  <distributionManagement>
    <repository>
      <id>java.net-m2-repository</id>
      <url>java-net:/maven2-repository/trunk/repository/</url>
    </repository>
  </distributionManagement>
</project>