pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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-data-jc</artifactId>
  6. <version>4.0.4.RELEASE</version>
  7. <name>spring-security-samples-data-jc</name>
  8. <description>spring-security-samples-data-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. </dependency>
  52. <dependency>
  53. <groupId>org.hibernate</groupId>
  54. <artifactId>hibernate-validator</artifactId>
  55. <version>4.2.0.Final</version>
  56. <scope>compile</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.hsqldb</groupId>
  60. <artifactId>hsqldb</artifactId>
  61. <version>2.3.2</version>
  62. <scope>compile</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.data</groupId>
  66. <artifactId>spring-data-jpa</artifactId>
  67. <version>1.7.1.RELEASE</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.security</groupId>
  72. <artifactId>spring-security-config</artifactId>
  73. <version>4.0.4.RELEASE</version>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.security</groupId>
  78. <artifactId>spring-security-data</artifactId>
  79. <version>4.0.4.RELEASE</version>
  80. <scope>compile</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>commons-logging</groupId>
  84. <artifactId>commons-logging</artifactId>
  85. <version>1.2</version>
  86. <scope>compile</scope>
  87. <optional>true</optional>
  88. </dependency>
  89. <dependency>
  90. <groupId>ch.qos.logback</groupId>
  91. <artifactId>logback-classic</artifactId>
  92. <version>1.1.2</version>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>junit</groupId>
  97. <artifactId>junit</artifactId>
  98. <version>4.11</version>
  99. <scope>test</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.easytesting</groupId>
  103. <artifactId>fest-assert</artifactId>
  104. <version>1.4</version>
  105. <scope>test</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.mockito</groupId>
  109. <artifactId>mockito-core</artifactId>
  110. <version>1.10.19</version>
  111. <scope>test</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.slf4j</groupId>
  115. <artifactId>jcl-over-slf4j</artifactId>
  116. <version>1.7.7</version>
  117. <scope>test</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springframework</groupId>
  121. <artifactId>spring-test</artifactId>
  122. <scope>test</scope>
  123. </dependency>
  124. </dependencies>
  125. <dependencyManagement>
  126. <dependencies>
  127. <dependency>
  128. <groupId>org.springframework</groupId>
  129. <artifactId>spring-framework-bom</artifactId>
  130. <version>4.2.5.RELEASE</version>
  131. <type>pom</type>
  132. <scope>import</scope>
  133. </dependency>
  134. </dependencies>
  135. </dependencyManagement>
  136. <build>
  137. <plugins>
  138. <plugin>
  139. <artifactId>maven-compiler-plugin</artifactId>
  140. <configuration>
  141. <source>1.7</source>
  142. <target>1.7</target>
  143. </configuration>
  144. </plugin>
  145. </plugins>
  146. </build>
  147. </project>