20101110

The easiest way to get started with Quickcheck

You may download the Quickcheck zip file from java.net. This zip contains the full Quickcheck distribution. Alternatively, the easiest way to get started is to use the Java.net maven repository.


Add the following definition to your pom.xml file:

<project>
  <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>
  <dependencies>
    <dependency>
      <groupId>net.java</groupId>
      <artifactId>quickcheck</artifactId>
      <version>0.5.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>

Have fun.

0 comments:

Post a Comment