Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.19 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>com.realdolmen</groupId>
  8. <artifactId>auto-bar</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <packaging>war</packaging>
  11.  
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15.  
  16. <dependencies>
  17.  
  18. <!--Logging-->
  19. <dependency>
  20. <groupId>org.slf4j</groupId>
  21. <artifactId>slf4j-api</artifactId>
  22. <version>1.7.7</version>
  23. </dependency>
  24.  
  25. <dependency>
  26. <groupId>ch.qos.logback</groupId>
  27. <artifactId>logback-classic</artifactId>
  28. <version>1.1.2</version>
  29. </dependency>
  30.  
  31.  
  32. <!--JSF API-->
  33. <dependency>
  34. <groupId>javax.faces</groupId>
  35. <artifactId>javax.faces-api</artifactId>
  36. <version>2.2</version>
  37. </dependency>
  38.  
  39.  
  40. <!--Primefaces extension on JSF-->
  41. <dependency>
  42. <groupId>org.primefaces</groupId>
  43. <artifactId>primefaces</artifactId>
  44. <version>5.1</version>
  45. </dependency>
  46.  
  47. <!--Primefaces themes-->
  48. <dependency>
  49. <groupId>org.primefaces.themes</groupId>
  50. <artifactId>all-themes</artifactId>
  51. <version>1.0.10</version>
  52. </dependency>
  53.  
  54. <!-- JUnit -->
  55. <dependency>
  56. <groupId>junit</groupId>
  57. <artifactId>junit</artifactId>
  58. <version>4.11</version>
  59. <scope>test</scope>
  60. </dependency>
  61.  
  62. <!--Spring MVC-->
  63. <dependency>
  64. <groupId>org.springframework</groupId>
  65. <artifactId>spring-webmvc</artifactId>
  66. <version>4.1.1.RELEASE</version>
  67. </dependency>
  68.  
  69. <!--Spring ORM-->
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-orm</artifactId>
  73. <version>4.1.1.RELEASE</version>
  74. </dependency>
  75.  
  76. <dependency>
  77. <groupId>commons-dbcp</groupId>
  78. <artifactId>commons-dbcp</artifactId>
  79. <version>1.4</version>
  80. </dependency>
  81.  
  82. <dependency>
  83. <groupId>mysql</groupId>
  84. <artifactId>mysql-connector-java</artifactId>
  85. <version>5.1.32</version>
  86. </dependency>
  87.  
  88. <!--Hibernate EM-->
  89. <dependency>
  90. <groupId>org.hibernate</groupId>
  91. <artifactId>hibernate-entitymanager</artifactId>
  92. <version>4.3.6.Final</version>
  93. </dependency>
  94.  
  95. <!--For tomcat because it's a lightweight container it doesn't have the JSF impl-->
  96. <dependency>
  97. <groupId>com.sun.faces</groupId>
  98. <artifactId>jsf-impl</artifactId>
  99. <version>2.1.7</version>
  100. </dependency>
  101.  
  102. <!--Spring security-->
  103. <dependency>
  104. <groupId>org.springframework.security</groupId>
  105. <artifactId>spring-security-web</artifactId>
  106. <version>3.2.5.RELEASE</version>
  107. </dependency>
  108.  
  109. <dependency>
  110. <groupId>org.springframework.security</groupId>
  111. <artifactId>spring-security-config</artifactId>
  112. <version>3.2.5.RELEASE</version>
  113. </dependency>
  114.  
  115. <dependency>
  116. <groupId>org.springframework.security</groupId>
  117. <artifactId>spring-security-taglibs</artifactId>
  118. <version>3.2.5.RELEASE</version>
  119. </dependency>
  120.  
  121. <dependency>
  122. <groupId>javax.servlet</groupId>
  123. <artifactId>javax.servlet-api</artifactId>
  124. <version>3.1.0</version>
  125. </dependency>
  126.  
  127. <dependency>
  128. <groupId>org.springframework.webflow</groupId>
  129. <artifactId>spring-faces</artifactId>
  130. <version>2.4.1.RELEASE</version>
  131. </dependency>
  132.  
  133. <!--Logging for spring security-->
  134. <dependency>
  135. <groupId>commons-logging</groupId>
  136. <artifactId>commons-logging</artifactId>
  137. <version>1.2</version>
  138. </dependency>
  139.  
  140. </dependencies>
  141. <build>
  142. <!-- Allows exploded deployment on JBoss and WildFly in IntelliJ IDEA -->
  143. <finalName>auto-bar</finalName>
  144.  
  145. <plugins>
  146. <plugin>
  147. <groupId>org.apache.maven.plugins</groupId>
  148. <artifactId>maven-compiler-plugin</artifactId>
  149. <version>3.1</version>
  150. <configuration>
  151. <target>1.7</target>
  152. <source>1.7</source>
  153. </configuration>
  154. </plugin>
  155. </plugins>
  156. </build>
  157. <repositories>
  158. <repository>
  159. <id>prime-repo</id>
  160. <name>PrimeFaces Maven Repository</name>
  161. <url>http://repository.primefaces.org</url>
  162. <layout>default</layout>
  163. </repository>
  164. </repositories>
  165. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement