Advertisement
Guest User

Untitled

a guest
Dec 14th, 2015
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>br.com.umari.erp</groupId>
  5. <artifactId>Umari</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>war</packaging>
  8. <dependencies>
  9. <dependency>
  10. <groupId>javax.faces</groupId>
  11. <artifactId>jsf-api</artifactId>
  12. <version>2.1</version>
  13. </dependency>
  14. <dependency>
  15. <groupId>org.primefaces</groupId>
  16. <artifactId>primefaces</artifactId>
  17. <version>5.3</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.hibernate.javax.persistence</groupId>
  21. <artifactId>hibernate-jpa-2.1-api</artifactId>
  22. <version>1.0.0.Final</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.hibernate</groupId>
  26. <artifactId>hibernate-entitymanager</artifactId>
  27. <version>5.0.5.Final</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.hibernate</groupId>
  31. <artifactId>hibernate-annotations</artifactId>
  32. <version>3.5.6-Final</version>
  33. </dependency>
  34.  
  35. <dependency>
  36. <groupId>org.primefaces.extensions</groupId>
  37. <artifactId>all-themes</artifactId>
  38. <version>1.0.8</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>javax.ejb</groupId>
  42. <artifactId>javax.ejb-api</artifactId>
  43. <version>3.2</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>javax.annotation</groupId>
  47. <artifactId>javax.annotation-api</artifactId>
  48. <version>1.2</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>javax.enterprise</groupId>
  52. <artifactId>cdi-api</artifactId>
  53. <version>1.2</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.jboss.weld</groupId>
  57. <artifactId>weld-core</artifactId>
  58. <version>2.3.2.Final</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>javax.servlet</groupId>
  62. <artifactId>javax.servlet-api</artifactId>
  63. <version>3.1.0</version>
  64. </dependency>
  65.  
  66. <dependency>
  67. <groupId>javax.validation</groupId>
  68. <artifactId>validation-api</artifactId>
  69. <version>1.1.0.Final</version>
  70. </dependency>
  71.  
  72. <dependency>
  73. <groupId>mysql</groupId>
  74. <artifactId>mysql-connector-java</artifactId>
  75. <version>5.1.38</version>
  76. </dependency>
  77.  
  78. </dependencies>
  79. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement