Skip to content

Instantly share code, notes, and snippets.

@wesleyegberto
Last active August 22, 2017 14:58
Show Gist options
  • Save wesleyegberto/473ce7b450aff4c82992af6309912281 to your computer and use it in GitHub Desktop.
Save wesleyegberto/473ce7b450aff4c82992af6309912281 to your computer and use it in GitHub Desktop.
Dependencies to test JAX-RS

Dependencies to test JAX-RS

Dependencies to POM.xml

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.12</version>
    <scope>test</scope>
</dependency>
<dependency>
    <groupId>org.hamcrest</groupId>
    <artifactId>hamcrest-library</artifactId>
    <version>1.3</version>
    <scope>test</scope>
</dependency>
<dependency>
    <groupId>org.mockito</groupId>
    <artifactId>mockito-core</artifactId>
    <version>2.8.47</version>
    <scope>test</scope>
</dependency>

<dependency>
    <groupId>org.glassfish.jersey.core</groupId>
    <artifactId>jersey-client</artifactId>
    <version>2.25.1</version>
    <scope>test</scope>
</dependency>
<dependency>
    <groupId>org.glassfish</groupId>
    <artifactId>javax.json</artifactId>
    <version>1.1</version>
    <scope>test</scope>
</dependency>
<dependency>
    <groupId>org.glassfish.jersey.media</groupId>
    <artifactId>jersey-media-json-processing</artifactId>
    <version>2.25.1</version>
    <scope>test</scope>
</dependency>

<dependency>
    <groupId>com.airhacks.rulz</groupId>
    <artifactId>jaxrsclient</artifactId>
    <version>0.0.3</version>
    <scope>test</scope>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment