JBoss.orgCommunity Documentation

Chapter 29. Maven and RESTEasy

JBoss's Maven Repository is at: http://repository.jboss.org/maven2

Here's the pom.xml fragment to use. Please replace 1.0.1.GA with the current Resteasy version you want to use.

<repositories>
   <repository>
      <id>jboss</id>
      <url>http://repository.jboss.org/maven2</url>
   </repository>
</repositories>
<dependencies>
   <dependency>
      <groupId>org.jboss.resteasy</groupId>
      <artifactId>resteasy-jaxrs</artifactId>
      <version>1.0.1.GA</version>
   </dependency>
</dependencies>
      

Please download the RESTEasy JAX-RS source and view our testsuite. Everything is done in maven and we use our Embedded JAX-RS Container to do our testing.