Created
November 18, 2018 11:00
-
-
Save rifttech/df558f4db2af7c68b540e99a2068bba4 to your computer and use it in GitHub Desktop.
resteasy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <repositories> | |
| <repository> | |
| <id>jboss</id> | |
| <url>http://repository.jboss.org/nexus/content/groups/public/</url> | |
| </repository> | |
| </repositories> | |
| <dependencies> | |
| <!-- core library --> | |
| <dependency> | |
| <groupId>org.jboss.resteasy</groupId> | |
| <artifactId>resteasy-jaxrs</artifactId> | |
| <version>3.0.2.Final</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.jboss.resteasy</groupId> | |
| <artifactId>resteasy-client</artifactId> | |
| <version>3.0.2.Final</version> | |
| </dependency> | |
| <!-- optional modules --> | |
| <!-- JAXB support --> | |
| <dependency> | |
| <groupId>org.jboss.resteasy</groupId> | |
| <artifactId>resteasy-jaxb-provider</artifactId> | |
| <version>3.0.2.Final</version> | |
| </dependency> | |
| <!-- multipart/form-data and multipart/mixed support --> | |
| <dependency> | |
| <groupId>org.jboss.resteasy</groupId> | |
| <artifactId>resteasy-multipart-provider</artifactId> | |
| <version>3.0.2.Final</version> | |
| </dependency> | |
| <!-- Resteasy Server Cache --> | |
| <dependency> | |
| <groupId>org.jboss.resteasy</groupId> | |
| <artifactId>resteasy-cache-core</artifactId> | |
| <version>3.0.2.Final</version> | |
| </dependency> | |
| <!-- Ruby YAML support --> | |
| <dependency> | |
| <groupId>org.jboss.resteasy</groupId> | |
| <artifactId>resteasy-yaml-provider</artifactId> | |
| <version>3.0.2.Final</version> | |
| </dependency> | |
| <!-- JAXB + Atom support --> | |
| <dependency> | |
| <groupId>org.jboss.resteasy</groupId> | |
| <artifactId>resteasy-atom-provider</artifactId> | |
| <version>3.0.2.Final</version> | |
| </dependency> | |
| <!-- Spring integration --> | |
| <dependency> | |
| <groupId>org.jboss.resteasy</groupId> | |
| <artifactId>resteasy-spring</artifactId> | |
| <version>3.0.2.Final</version> | |
| </dependency> | |
| <!-- Guice integration --> | |
| <dependency> | |
| <groupId>org.jboss.resteasy</groupId> | |
| <artifactId>resteasy-guice</artifactId> | |
| <version>3.0.2.Final</version> | |
| </dependency> | |
| <!-- Asynchronous HTTP support with Servlet 3.0 --> | |
| <dependency> | |
| <groupId>org.jboss.resteasy</groupId> | |
| <artifactId>async-http-servlet-3.0</artifactId> | |
| <version>3.0.2.Final</version> | |
| </dependency> | |
| </dependencies> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment