Advertisement
Guest User

Untitled

a guest
Oct 8th, 2015
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. <packaging>war</packaging>
  2. <properties>
  3. <resteasy.version>3.0.9.Final</resteasy.version>
  4. </properties>
  5.  
  6.  
  7. <dependencies>
  8. <!-- Basic support -->
  9. <dependency>
  10. <groupId>org.jboss.resteasy</groupId>
  11. <artifactId>resteasy-jaxrs</artifactId>
  12. <version>${resteasy.version}</version>
  13. </dependency>
  14. <!-- Servlet pluggability support -->
  15. <dependency>
  16. <groupId>org.jboss.resteasy</groupId>
  17. <artifactId>resteasy-servlet-initializer</artifactId>
  18. <version>${resteasy.version}</version>
  19. </dependency>
  20. <!-- JSON/POJO support -->
  21. <dependency>
  22. <groupId>org.jboss.resteasy</groupId>
  23. <artifactId>resteasy-jackson2-provider</artifactId>
  24. <version>${resteasy.version}</version>
  25. </dependency>
  26. <!-- REST Client support -->
  27. <dependency>
  28. <groupId>org.jboss.resteasy</groupId>
  29. <artifactId>resteasy-client</artifactId>
  30. <version>${resteasy.version}</version>
  31. </dependency>
  32. <!-- RestEasy/CDI Integration -->
  33. <dependency>
  34. <groupId>org.jboss.resteasy</groupId>
  35. <artifactId>resteasy-cdi</artifactId>
  36. <version>${resteasy.version}</version>
  37. </dependency>
  38.  
  39. <!-- CDI -->
  40. <dependency>
  41. <groupId>org.jboss.weld.servlet</groupId>
  42. <artifactId>weld-servlet</artifactId>
  43. <version>2.3.0.Final</version>
  44. </dependency>
  45.  
  46. <!-- Banco -->
  47. <dependency>
  48. <groupId>org.postgresql</groupId>
  49. <artifactId>postgresql</artifactId>
  50. <version>9.4-1203-jdbc42</version>
  51. </dependency>
  52.  
  53. </dependencies>
  54. <build>
  55.  
  56. <finalName>${project.artifactId}-${project.version}</finalName>
  57.  
  58. <plugins>
  59.  
  60. <!-- especifica a versão do java no plugin de copilação -->
  61. <plugin>
  62. <groupId>org.apache.maven.plugins</groupId>
  63. <artifactId>maven-compiler-plugin</artifactId>
  64. <version>3.1</version>
  65. <configuration>
  66. <source>1.8</source>
  67. <target>1.8</target>
  68. <executable>${JAVA_HOME}/bin/javac</executable>
  69. </configuration>
  70. </plugin>
  71. </plugins>
  72. </build>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement