pom.xml 7.5 KB

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