Skip to content

Instantly share code, notes, and snippets.

@wesleyegberto
Last active December 28, 2016 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wesleyegberto/cae5e77874af18dec0dd82882f9c22c2 to your computer and use it in GitHub Desktop.
Save wesleyegberto/cae5e77874af18dec0dd82882f9c22c2 to your computer and use it in GitHub Desktop.
Dependecies to test in a embedded JAX-RS (may need update the version)

#Dependecies to test in a embedded JAX-RS

may need update

Dependencies to POM.xml

<dependency>
    <groupId>org.glassfish.jersey.test-framework.providers</groupId>
    <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
    <version>2.22</version>
    <scope>test</scope>
</dependency>
<!--
<dependency>
    <groupId>org.glassfish.jersey.test-framework.providers</groupId>
    <artifactId>jersey-test-framework-provider-inmemory</artifactId>
    <version>2.22</version>
</dependency>
-->
<dependency>
    <groupId>org.glassfish.jersey.test-framework.providers</groupId>
    <artifactId>jersey-test-framework-provider-jdk-http</artifactId>
    <version>2.22</version>
    <scope>test</scope>
</dependency>
<dependency>
    <groupId>org.glassfish</groupId>
    <artifactId>javax.json</artifactId>
    <version>1.0.4</version>
</dependency>
<dependency>
    <groupId>org.glassfish.jersey.media</groupId>
    <artifactId>jersey-media-json-processing</artifactId>
    <version>2.21</version>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment