pom.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.springframework.security</groupId>
  5. <artifactId>spring-security-samples-messages-jc</artifactId>
  6. <version>4.0.4.RELEASE</version>
  7. <name>spring-security-samples-messages-jc</name>
  8. <description>spring-security-samples-messages-jc</description>
  9. <url>http://spring.io/spring-security</url>
  10. <organization>
  11. <name>spring.io</name>
  12. <url>http://spring.io/</url>
  13. </organization>
  14. <licenses>
  15. <license>
  16. <name>The Apache Software License, Version 2.0</name>
  17. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <developers>
  22. <developer>
  23. <id>rwinch</id>
  24. <name>Rob Winch</name>
  25. <email>rwinch@gopivotal.com</email>
  26. </developer>
  27. </developers>
  28. <scm>
  29. <connection>scm:git:git://github.com/spring-projects/spring-security</connection>
  30. <developerConnection>scm:git:git://github.com/spring-projects/spring-security</developerConnection>
  31. <url>https://github.com/spring-projects/spring-security</url>
  32. </scm>
  33. <dependencies>
  34. <dependency>
  35. <groupId>javax.validation</groupId>
  36. <artifactId>validation-api</artifactId>
  37. <version>1.0.0.GA</version>
  38. <scope>compile</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.hibernate.javax.persistence</groupId>
  42. <artifactId>hibernate-jpa-2.0-api</artifactId>
  43. <version>1.0.0.Final</version>
  44. <scope>compile</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.hibernate</groupId>
  48. <artifactId>hibernate-entitymanager</artifactId>
  49. <version>3.6.10.Final</version>
  50. <scope>compile</scope>
  51. <exclusions>
  52. <exclusion>
  53. <artifactId>javassist</artifactId>
  54. <groupId>javassist</groupId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.hibernate</groupId>
  60. <artifactId>hibernate-validator</artifactId>
  61. <version>4.2.0.Final</version>
  62. <scope>compile</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.hsqldb</groupId>
  66. <artifactId>hsqldb</artifactId>
  67. <version>2.3.2</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.data</groupId>
  72. <artifactId>spring-data-jpa</artifactId>
  73. <version>1.7.1.RELEASE</version>
  74. <scope>compile</scope>
  75. <exclusions>
  76. <exclusion>
  77. <artifactId>aspectjrt</artifactId>
  78. <groupId>org.aspectj</groupId>
  79. </exclusion>
  80. </exclusions>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.security</groupId>
  84. <artifactId>spring-security-config</artifactId>
  85. <version>4.0.4.RELEASE</version>
  86. <scope>compile</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.security</groupId>
  90. <artifactId>spring-security-web</artifactId>
  91. <version>4.0.4.RELEASE</version>
  92. <scope>compile</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework</groupId>
  96. <artifactId>spring-aop</artifactId>
  97. <scope>compile</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework</groupId>
  101. <artifactId>spring-aspects</artifactId>
  102. <scope>compile</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework</groupId>
  106. <artifactId>spring-beans</artifactId>
  107. <scope>compile</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework</groupId>
  111. <artifactId>spring-context</artifactId>
  112. <scope>compile</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework</groupId>
  116. <artifactId>spring-core</artifactId>
  117. <scope>compile</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springframework</groupId>
  121. <artifactId>spring-instrument</artifactId>
  122. <scope>compile</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.springframework</groupId>
  126. <artifactId>spring-orm</artifactId>
  127. <scope>compile</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework</groupId>
  131. <artifactId>spring-tx</artifactId>
  132. <scope>compile</scope>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springframework</groupId>
  136. <artifactId>spring-webmvc</artifactId>
  137. <scope>compile</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.thymeleaf.extras</groupId>
  141. <artifactId>thymeleaf-extras-tiles2-spring4</artifactId>
  142. <version>2.1.1.RELEASE</version>
  143. <scope>compile</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.thymeleaf</groupId>
  147. <artifactId>thymeleaf-spring4</artifactId>
  148. <version>2.1.4.RELEASE</version>
  149. <scope>compile</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>commons-logging</groupId>
  153. <artifactId>commons-logging</artifactId>
  154. <version>1.2</version>
  155. <scope>compile</scope>
  156. <optional>true</optional>
  157. </dependency>
  158. <dependency>
  159. <groupId>javax.servlet</groupId>
  160. <artifactId>javax.servlet-api</artifactId>
  161. <version>3.0.1</version>
  162. <scope>provided</scope>
  163. </dependency>
  164. <dependency>
  165. <groupId>ch.qos.logback</groupId>
  166. <artifactId>logback-classic</artifactId>
  167. <version>1.1.2</version>
  168. <scope>test</scope>
  169. </dependency>
  170. <dependency>
  171. <groupId>junit</groupId>
  172. <artifactId>junit</artifactId>
  173. <version>4.11</version>
  174. <scope>test</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.easytesting</groupId>
  178. <artifactId>fest-assert</artifactId>
  179. <version>1.4</version>
  180. <scope>test</scope>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.mockito</groupId>
  184. <artifactId>mockito-core</artifactId>
  185. <version>1.10.19</version>
  186. <scope>test</scope>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.slf4j</groupId>
  190. <artifactId>jcl-over-slf4j</artifactId>
  191. <version>1.7.7</version>
  192. <scope>test</scope>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.springframework</groupId>
  196. <artifactId>spring-test</artifactId>
  197. <scope>test</scope>
  198. </dependency>
  199. </dependencies>
  200. <dependencyManagement>
  201. <dependencies>
  202. <dependency>
  203. <groupId>org.springframework</groupId>
  204. <artifactId>spring-framework-bom</artifactId>
  205. <version>4.2.5.RELEASE</version>
  206. <type>pom</type>
  207. <scope>import</scope>
  208. </dependency>
  209. </dependencies>
  210. </dependencyManagement>
  211. <build>
  212. <plugins>
  213. <plugin>
  214. <artifactId>maven-compiler-plugin</artifactId>
  215. <configuration>
  216. <source>1.7</source>
  217. <target>1.7</target>
  218. </configuration>
  219. </plugin>
  220. </plugins>
  221. </build>
  222. </project>