Skip to content

Downloads

Elliott Pope edited this page Feb 9, 2021 · 47 revisions

How to get the REST-driver

I'm sure you're wondering how to use this library to test your own code.

Maven Central

The REST-driver is available in Maven Central. You can use it by adding the following to the dependencies section of your pom.xml:

<!-- For the client driver -->
<dependency>
  <groupId>com.github.rest-driver</groupId>
  <artifactId>rest-client-driver</artifactId>
  <version>2.0.1</version>
</dependency>

<!-- For the server driver -->
<dependency>
  <groupId>com.github.rest-driver</groupId>
  <artifactId>rest-server-driver</artifactId>
  <version>2.0.1</version>
</dependency>

Of course you can also use the latest version by downloading the source from https://github.com/rest-driver/rest-driver/downloads and running mvn clean install.

Clone this wiki locally