REST Client Driver.
Test Driver to test your RESTful services.
Here is the list of declaration for rest-client-driver. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.github.rest-driver</groupId> <artifactId>rest-client-driver</artifactId> <version>1.1.28</version> </dependency>
If you think this Maven repository POM file listing for rest-client-driver is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following packages are defined in the rest-client-driver-1.1.28.jar
com.github.restdriver.clientdriver com.github.restdriver.clientdriver.example com.github.restdriver.clientdriver.exception com.github.restdriver.clientdriver.jetty
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> <artifactId>rest-client-driver</artifactId> <name>REST Client Driver</name> <description>Test Driver to test your RESTful services</description> <parent> <groupId>com.github.rest-driver</groupId> <artifactId>rest-driver</artifactId> <version>1.1.28</version> </parent> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rest-driver-shared</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit-dep</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> </dependency> </dependencies> </project>