pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>main</groupId>
  5. <artifactId>BankUser</artifactId>
  6. <packaging>war</packaging>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>BankUser Maven Webapp</name>
  9. <url>http://maven.apache.org</url>
  10. <dependencies>
  11. <!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
  12. <dependency>
  13. <groupId>javax.servlet</groupId>
  14. <artifactId>jstl</artifactId>
  15. <version>1.2</version>
  16. </dependency>
  17. <!-- https://mvnrepository.com/artifact/taglibs/standard -->
  18. <dependency>
  19. <groupId>taglibs</groupId>
  20. <artifactId>standard</artifactId>
  21. <version>1.1.2</version>
  22. </dependency>
  23. <!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest-core -->
  24. <dependency>
  25. <groupId>org.hamcrest</groupId>
  26. <artifactId>hamcrest-core</artifactId>
  27. <version>1.3</version>
  28. <scope>test</scope>
  29. </dependency>
  30. <!-- https://mvnrepository.com/artifact/log4j/log4j -->
  31. <dependency>
  32. <groupId>log4j</groupId>
  33. <artifactId>log4j</artifactId>
  34. <version>1.2.17</version>
  35. </dependency>
  36. <!-- https://mvnrepository.com/artifact/com.github.jsqlparser/jsqlparser -->
  37. <dependency>
  38. <groupId>com.github.jsqlparser</groupId>
  39. <artifactId>jsqlparser</artifactId>
  40. <version>1.1</version>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
  43. <dependency>
  44. <groupId>org.mybatis</groupId>
  45. <artifactId>mybatis</artifactId>
  46. <version>3.2.7</version>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-spring -->
  49. <dependency>
  50. <groupId>org.mybatis</groupId>
  51. <artifactId>mybatis-spring</artifactId>
  52. <version>1.3.1</version>
  53. </dependency>
  54. <!-- https://mvnrepository.com/artifact/javax.servlet.jsp.jstl/jstl -->
  55. <dependency>
  56. <groupId>javax.servlet.jsp.jstl</groupId>
  57. <artifactId>jstl</artifactId>
  58. <version>1.2</version>
  59. </dependency>
  60. <!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
  61. <dependency>
  62. <groupId>javax.servlet.jsp</groupId>
  63. <artifactId>javax.servlet.jsp-api</artifactId>
  64. <version>2.3.1</version>
  65. <scope>provided</scope>
  66. </dependency>
  67. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2 -->
  68. <dependency>
  69. <groupId>org.apache.commons</groupId>
  70. <artifactId>commons-dbcp2</artifactId>
  71. <version>2.1.1</version>
  72. </dependency>
  73. <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
  74. <dependency>
  75. <groupId>commons-fileupload</groupId>
  76. <artifactId>commons-fileupload</artifactId>
  77. <version>1.3.2</version>
  78. </dependency>
  79. <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
  80. <dependency>
  81. <groupId>javax.servlet</groupId>
  82. <artifactId>javax.servlet-api</artifactId>
  83. <version>3.1.0</version>
  84. <scope>provided</scope>
  85. </dependency>
  86. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  87. <dependency>
  88. <groupId>com.fasterxml.jackson.core</groupId>
  89. <artifactId>jackson-databind</artifactId>
  90. <version>2.9.5</version>
  91. </dependency>
  92. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  93. <dependency>
  94. <groupId>mysql</groupId>
  95. <artifactId>mysql-connector-java</artifactId>
  96. <version>5.1.27</version>
  97. </dependency>
  98. <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper -->
  99. <dependency>
  100. <groupId>com.github.pagehelper</groupId>
  101. <artifactId>pagehelper</artifactId>
  102. <version>5.1.2</version>
  103. </dependency>
  104. <!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
  105. <dependency>
  106. <groupId>org.springframework</groupId>
  107. <artifactId>spring-test</artifactId>
  108. <version>4.3.11.RELEASE</version>
  109. <scope>test</scope>
  110. </dependency>
  111. <!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
  112. <dependency>
  113. <groupId>org.springframework</groupId>
  114. <artifactId>spring-jdbc</artifactId>
  115. <version>4.3.11.RELEASE</version>
  116. </dependency>
  117. <!-- https://mvnrepository.com/artifact/org.springframework/spring-tx -->
  118. <dependency>
  119. <groupId>org.springframework</groupId>
  120. <artifactId>spring-tx</artifactId>
  121. <version>4.3.11.RELEASE</version>
  122. </dependency>
  123. <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
  124. <dependency>
  125. <groupId>org.springframework</groupId>
  126. <artifactId>spring-webmvc</artifactId>
  127. <version>4.3.11.RELEASE</version>
  128. </dependency>
  129. <!-- https://mvnrepository.com/artifact/org.springframework/spring-aspects -->
  130. <dependency>
  131. <groupId>org.springframework</groupId>
  132. <artifactId>spring-aspects</artifactId>
  133. <version>4.3.11.RELEASE</version>
  134. </dependency>
  135. <!-- https://mvnrepository.com/artifact/junit/junit -->
  136. <dependency>
  137. <groupId>junit</groupId>
  138. <artifactId>junit</artifactId>
  139. <version>4.6</version>
  140. <scope>test</scope>
  141. </dependency>
  142. </dependencies>
  143. <build>
  144. <finalName>BankUser</finalName>
  145. </build>
  146. </project>