pom.xml 4.8 KB

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