pom.xml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>web-project</groupId>
  4. <artifactId>web-project</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <name>Web project</name>
  7. <description>Web project with hibernate and spring mvc</description>
  8. <packaging>pom</packaging>
  9. <build>
  10. <sourceDirectory>src</sourceDirectory>
  11. <plugins>
  12. <plugin>
  13. <artifactId>maven-compiler-plugin</artifactId>
  14. <version>3.6.1</version>
  15. <configuration>
  16. <source>1.8</source>
  17. <target>1.8</target>
  18. </configuration>
  19. </plugin>
  20. </plugins>
  21. </build>
  22. <properties>
  23. <!-- <java-version>1.8</java-version> -->
  24. <org.springframework-version>4.3.0.RELEASE</org.springframework-version>
  25. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  26. <!-- <org.hibernate.annotations.version>4.0.1.Final</org.hibernate.annotations.version> -->
  27. <!-- <org.hibernate-validator.version>3.3.0.ga</org.hibernate-validator.version> -->
  28. <org.springframework.security.version>4.0.4.RELEASE</org.springframework.security.version>
  29. </properties>
  30. <dependencies>
  31. <!-- https://mvnrepository.com/artifact/log4j/log4j -->
  32. <dependency>
  33. <groupId>log4j</groupId>
  34. <artifactId>log4j</artifactId>
  35. <version>1.2.17</version>
  36. </dependency>
  37. <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
  38. <dependency>
  39. <groupId>org.slf4j</groupId>
  40. <artifactId>slf4j-api</artifactId>
  41. <version>1.7.25</version>
  42. </dependency>
  43. <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
  44. <dependency>
  45. <groupId>org.slf4j</groupId>
  46. <artifactId>slf4j-log4j12</artifactId>
  47. <version>1.7.25</version>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-context</artifactId>
  53. <version>${org.springframework-version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework</groupId>
  57. <artifactId>spring-webmvc</artifactId>
  58. <version>${org.springframework-version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework</groupId>
  62. <artifactId>spring-orm</artifactId>
  63. <version>${org.springframework-version}</version>
  64. <type>jar</type>
  65. <scope>compile</scope>
  66. </dependency>
  67. <!-- <dependency> -->
  68. <!-- <groupId>org.hibernate</groupId> -->
  69. <!-- <artifactId>hibernate-core</artifactId> -->
  70. <!-- <version>5.1.5.Final</version> -->
  71. <!-- <exclusions> -->
  72. <!-- <exclusion> -->
  73. <!-- <groupId>org.javassist</groupId> -->
  74. <!-- <artifactId>javassist</artifactId> -->
  75. <!-- </exclusion> -->
  76. <!-- </exclusions> -->
  77. <!-- </dependency> -->
  78. <!-- https://mvnrepository.com/artifact/org.hibernate.common/hibernate-commons-annotations -->
  79. <!-- <dependency> -->
  80. <!-- <groupId>org.hibernate.common</groupId> -->
  81. <!-- <artifactId>hibernate-commons-annotations</artifactId> -->
  82. <!-- <version>5.0.1.Final</version> -->
  83. <!-- </dependency> -->
  84. <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
  85. <dependency>
  86. <groupId>org.hibernate</groupId>
  87. <artifactId>hibernate-core</artifactId>
  88. <version>5.2.12.Final</version>
  89. </dependency>
  90. <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-c3p0 -->
  91. <dependency>
  92. <groupId>org.hibernate</groupId>
  93. <artifactId>hibernate-c3p0</artifactId>
  94. <version>5.1.5.Final</version>
  95. </dependency>
  96. <!-- https://mvnrepository.com/artifact/org.hibernate.common/hibernate-commons-annotations -->
  97. <dependency>
  98. <groupId>org.hibernate.common</groupId>
  99. <artifactId>hibernate-commons-annotations</artifactId>
  100. <version>5.0.1.Final</version>
  101. </dependency>
  102. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  103. <dependency>
  104. <groupId>commons-io</groupId>
  105. <artifactId>commons-io</artifactId>
  106. <version>2.5</version>
  107. </dependency>
  108. <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-annotations -->
  109. <!-- <dependency> -->
  110. <!-- <groupId>org.hibernate</groupId> -->
  111. <!-- <artifactId>hibernate-annotations</artifactId> -->
  112. <!-- <version>3.5.6-Final</version> -->
  113. <!-- </dependency> -->
  114. <!-- https://mvnrepository.com/artifact/com.mchange/c3p0 -->
  115. <dependency>
  116. <groupId>com.mchange</groupId>
  117. <artifactId>c3p0</artifactId>
  118. <version>0.9.5.2</version>
  119. </dependency>
  120. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
  121. <dependency>
  122. <groupId>org.apache.commons</groupId>
  123. <artifactId>commons-collections4</artifactId>
  124. <version>4.4</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.fasterxml.jackson.core</groupId>
  128. <artifactId>jackson-core</artifactId>
  129. <version>2.7.4</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.fasterxml.jackson.core</groupId>
  133. <artifactId>jackson-databind</artifactId>
  134. <version>2.7.4</version>
  135. </dependency>
  136. <!-- https://mvnrepository.com/artifact/org.codehaus.jackson/jackson-mapper-asl -->
  137. <dependency>
  138. <groupId>com.fasterxml.jackson.core</groupId>
  139. <artifactId>jackson-annotations</artifactId>
  140. <version>2.7.4</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>javax.servlet</groupId>
  144. <artifactId>javax.servlet-api</artifactId>
  145. <version>3.0.1</version>
  146. <scope>provided</scope>
  147. </dependency>
  148. <!-- https://mvnrepository.com/artifact/org.apache.geronimo.specs/geronimo-jta_1.1_spec -->
  149. <dependency>
  150. <groupId>org.apache.geronimo.specs</groupId>
  151. <artifactId>geronimo-jta_1.1_spec</artifactId>
  152. <version>1.1.1</version>
  153. <!-- <scope>provided</scope> -->
  154. </dependency>
  155. <!-- https://mvnrepository.com/artifact/org.eclipse.persistence/javax.persistence -->
  156. <dependency>
  157. <groupId>org.eclipse.persistence</groupId>
  158. <artifactId>javax.persistence</artifactId>
  159. <version>2.2.0</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.commons</groupId>
  163. <artifactId>commons-dbcp2</artifactId>
  164. <version>2.0</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>javassist</groupId>
  168. <artifactId>javassist</artifactId>
  169. <version>3.12.1.GA</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>commons-fileupload</groupId>
  173. <artifactId>commons-fileupload</artifactId>
  174. <version>1.2.1</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>javax.validation</groupId>
  178. <artifactId>validation-api</artifactId>
  179. <version>1.1.0.Final</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>jstl</groupId>
  183. <artifactId>jstl</artifactId>
  184. <version>1.2</version>
  185. </dependency>
  186. <!-- <dependency> -->
  187. <!-- <groupId>org.apache.directory.studio</groupId> -->
  188. <!-- <artifactId>org.apache.commons.io</artifactId> -->
  189. <!-- <version>2.4</version> -->
  190. <!-- </dependency> -->
  191. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  192. <dependency>
  193. <groupId>commons-io</groupId>
  194. <artifactId>commons-io</artifactId>
  195. <version>2.5</version>
  196. </dependency>
  197. <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
  198. <dependency>
  199. <groupId>commons-lang</groupId>
  200. <artifactId>commons-lang</artifactId>
  201. <version>2.6</version>
  202. </dependency>
  203. <!-- https://mvnrepository.com/artifact/joda-time/joda-time -->
  204. <dependency>
  205. <groupId>joda-time</groupId>
  206. <artifactId>joda-time</artifactId>
  207. <version>2.9.9</version>
  208. </dependency>
  209. <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
  210. <dependency>
  211. <groupId>commons-beanutils</groupId>
  212. <artifactId>commons-beanutils</artifactId>
  213. <version>1.9.3</version>
  214. </dependency>
  215. <!-- https://mvnrepository.com/artifact/xml-apis/xml-apis -->
  216. <dependency>
  217. <groupId>xml-apis</groupId>
  218. <artifactId>xml-apis</artifactId>
  219. <version>1.0.b2</version>
  220. <scope>provided</scope>
  221. </dependency>
  222. </dependencies>
  223. </project>