Maven Repository - POM file for Testing datafactory 0.8 0.8

Summary

DataFactory.

Library to generate data for testing.

Declaration

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

<dependency>
   <groupId>org.fluttercode.datafactory</groupId>
   <artifactId>datafactory</artifactId>
   <version>0.8</version>
</dependency>

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

License

Name:LGPL Version 3
URL: http://www.gnu.org/licenses/lgpl-3.0.txt.

Depends on

The datafactory-0.8 has 1 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
JUnitjunit 4.8.2
JUnit is a regression testing framework. It is used by the developer who implements unit tests in Java.
919




Plugin

The following plugins are used in the datafactory-0.8.jar

  1. maven-compiler-plugin
  2. maven-deploy-plugin
  3. maven-install-plugin
  4. maven-release-plugin
  5. maven-resources-plugin

Packages

The following packages are defined in the datafactory-0.8.jar

org.fluttercode.datafactory
org.fluttercode.datafactory.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>org.fluttercode.datafactory</groupId>
  <artifactId>datafactory</artifactId>
  <version>0.8</version>

  <name>DataFactory</name>
  <description>Library to generate data for testing</description>

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>3</version>
  </parent>

  <url>http://www.andygibson.net/blog/projects/</url>

  

  <licenses>
    <license>
      <name>LGPL Version 3</name>
      <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>


  <scm>
    <connection>scm:git:git://github.com/andygibson/datafactory.git</connection>
    <url>scm:git:git://github.com/andygibson/datafactory</url>
    <developerConnection>scm:git:git@github.com:andygibson/datafactory.git</developerConnection>
  </scm>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.2</version>
      <type>jar</type>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.0</version>
        <configuration>
          <mavenExecutorId>forked-path</mavenExecutorId>
          <gpg.useagent>true</gpg.useagent>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-install-plugin</artifactId>
        <version>2.3.1</version>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-resources-plugin</artifactId>
        <version>2.4.3</version>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-deploy-plugin</artifactId>
        <version>2.5</version>
      </plugin>


      <plugin>
        <groupId>org.apache.maven.plugins</groupId>

        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.0.2</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>

    </plugins>

  </build>

</project>