rafaelvicio

Untitled

Jun 28th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.24 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>arena</groupId>
  5. <artifactId>arena</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>war</packaging>
  8.  
  9. <properties>
  10. <org.springframework.version>3.0.6.RELEASE</org.springframework.version>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>1.8</maven.compiler.source>
  13. <maven.compiler.target>1.8</maven.compiler.target>
  14. </properties>
  15.  
  16. <dependencies>
  17.  
  18. <!-- JSF API -->
  19.  
  20. <dependency>
  21. <groupId>com.sun.faces</groupId>
  22. <artifactId>jsf-api</artifactId>
  23. <version>2.1.6</version>
  24. </dependency>
  25.  
  26. <!-- JSF IMPL -->
  27.  
  28. <dependency>
  29. <groupId>com.sun.faces</groupId>
  30. <artifactId>jsf-impl</artifactId>
  31. <version>2.1.6</version>
  32. </dependency>
  33.  
  34. <!-- JSTL -->
  35.  
  36. <dependency>
  37. <groupId>javax.servlet</groupId>
  38. <artifactId>jstl</artifactId>
  39. <version>1.2</version>
  40. </dependency>
  41.  
  42. <!-- JPA -->
  43.  
  44. <dependency>
  45. <groupId>org.hibernate.javax.persistence</groupId>
  46. <artifactId>hibernate-jpa-2.0-api</artifactId>
  47. <version>1.0.1.Final</version>
  48. </dependency>
  49.  
  50. <!-- MYSQL -->
  51.  
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. <version>5.1.15</version>
  56. </dependency>
  57.  
  58. <!-- Hibernate -->
  59.  
  60. <dependency>
  61. <groupId>org.hibernate</groupId>
  62. <artifactId>hibernate-entitymanager</artifactId>
  63. <version>3.4.0.GA</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.hibernate</groupId>
  67. <artifactId>hibernate-validator</artifactId>
  68. <version>4.0.2.GA</version>
  69. </dependency>
  70.  
  71. <!-- EE 7 Web Specification API -->
  72.  
  73. <dependency>
  74. <groupId>javax</groupId>
  75. <artifactId>javaee-web-api</artifactId>
  76. <version>7.0</version>
  77. </dependency>
  78.  
  79. <!-- Ozark -->
  80.  
  81. <dependency>
  82. <groupId>com.oracle.ozark</groupId>
  83. <artifactId>ozark</artifactId>
  84. <version>1.0.0-m01</version>
  85. <scope>compile</scope>
  86. </dependency>
  87.  
  88. <dependency>
  89. <groupId>com.oracle.ozark.ext</groupId>
  90. <artifactId>ozark-mustache</artifactId>
  91. <version>1.0.0-m01</version>
  92. <scope>compile</scope>
  93. </dependency>
  94.  
  95. <!-- Primefaces -->
  96. <dependency>
  97. <groupId>org.primefaces</groupId>
  98. <artifactId>primefaces</artifactId>
  99. <version>6.0</version>
  100. </dependency>
  101.  
  102. <dependency>
  103. <groupId>org.springframework</groupId>
  104. <artifactId>spring-core</artifactId>
  105. <version>${org.springframework.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework</groupId>
  109. <artifactId>spring-expression</artifactId>
  110. <version>${org.springframework.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework</groupId>
  114. <artifactId>spring-beans</artifactId>
  115. <version>${org.springframework.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework</groupId>
  119. <artifactId>spring-aop</artifactId>
  120. <version>${org.springframework.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.springframework</groupId>
  124. <artifactId>spring-context</artifactId>
  125. <version>${org.springframework.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.springframework</groupId>
  129. <artifactId>spring-context-support</artifactId>
  130. <version>${org.springframework.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.springframework</groupId>
  134. <artifactId>spring-tx</artifactId>
  135. <version>${org.springframework.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.springframework</groupId>
  139. <artifactId>spring-jdbc</artifactId>
  140. <version>${org.springframework.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.springframework</groupId>
  144. <artifactId>spring-orm</artifactId>
  145. <version>${org.springframework.version}</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.springframework</groupId>
  149. <artifactId>spring-web</artifactId>
  150. <version>${org.springframework.version}</version>
  151. </dependency>
  152.  
  153.  
  154.  
  155.  
  156.  
  157. <dependency>
  158. <groupId>cglib</groupId>
  159. <artifactId>cglib-nodep</artifactId>
  160. <version>2.2.2</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.slf4j</groupId>
  164. <artifactId>slf4j-api</artifactId>
  165. <version>1.6.1</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.slf4j</groupId>
  169. <artifactId>slf4j-simple</artifactId>
  170. <version>1.6.1</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>asm</groupId>
  174. <artifactId>asm-commons</artifactId>
  175. <version>3.1</version>
  176. </dependency>
  177. </dependencies>
  178.  
  179. <build>
  180. <plugins>
  181. <plugin>
  182. <artifactId>maven-compiler-plugin</artifactId>
  183. <version>3.3</version>
  184. <configuration>
  185. <source>1.8</source>
  186. <target>1.8</target>
  187. </configuration>
  188. </plugin>
  189. <plugin>
  190. <artifactId>maven-war-plugin</artifactId>
  191. <version>2.6</version>
  192. <configuration>
  193. <warSourceDirectory>WebContent</warSourceDirectory>
  194. <failOnMissingWebXml>false</failOnMissingWebXml>
  195. </configuration>
  196. </plugin>
  197. </plugins>
  198. </build>
  199. </project>
Advertisement
Add Comment
Please, Sign In to add comment