Skip to content

Getting Started

Mahmoud Ben Hassine edited this page Dec 20, 2015 · 32 revisions

Prerequisite

Random Beans requires a Java 1.6+ runtime.

Build instructions

To build Random Beans from sources, you need to have git and maven installed and set up.

Please follow these instructions :

  • $>git clone https://github.com/benas/random-beans
  • $>mvn install

Maven usage

In order to use Random Beans in your maven based project, add the following dependency to your pom.xml :

<dependency>
    <groupId>io.github.benas</groupId>
    <artifactId>random-beans</artifactId>
    <version>2.0.0</version>
    <scope>test</scope>
</dependency>

If you need to use current snapshot version (2.1.0-SNAPSHOT), add the following repository in your pom.xml:

<repository>
    <id>ossrh</id>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
Clone this wiki locally