pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.cdxw.ssm</groupId>
  7. <artifactId>ssm_integration</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>war</packaging>
  10. <!--自定义属性,用来设置版本号,在后面用到版本号的地方直接使用${}来使用-->
  11. <properties>
  12. <spring.version>5.3.20</spring.version>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework</groupId>
  17. <artifactId>spring-context</artifactId>
  18. <version>${spring.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-beans</artifactId>
  23. <version>${spring.version}</version>
  24. </dependency>
  25. <!--springmvc-->
  26. <dependency>
  27. <groupId>org.springframework</groupId>
  28. <artifactId>spring-web</artifactId>
  29. <version>${spring.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework</groupId>
  33. <artifactId>spring-webmvc</artifactId>
  34. <version>${spring.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring-jdbc</artifactId>
  39. <version>${spring.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework</groupId>
  43. <artifactId>spring-aspects</artifactId>
  44. <version>${spring.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework</groupId>
  48. <artifactId>spring-test</artifactId>
  49. <version>${spring.version}</version>
  50. </dependency>
  51. <!-- Mybatis核心 -->
  52. <dependency>
  53. <groupId>org.mybatis</groupId>
  54. <artifactId>mybatis</artifactId>
  55. <version>3.5.7</version>
  56. </dependency>
  57. <!--mybatis和spring的整合包-->
  58. <dependency>
  59. <groupId>org.mybatis</groupId>
  60. <artifactId>mybatis-spring</artifactId>
  61. <version>2.0.6</version>
  62. </dependency>
  63. <!-- 连接池 -->
  64. <dependency>
  65. <groupId>com.alibaba</groupId>
  66. <artifactId>druid</artifactId>
  67. <version>1.0.9</version>
  68. </dependency>
  69. <!-- junit测试 -->
  70. <dependency>
  71. <groupId>junit</groupId>
  72. <artifactId>junit</artifactId>
  73. <version>4.12</version>
  74. <scope>test</scope>
  75. </dependency>
  76. <!-- MySQL驱动 -->
  77. <dependency>
  78. <groupId>mysql</groupId>
  79. <artifactId>mysql-connector-java</artifactId>
  80. <version>8.0.16</version>
  81. </dependency>
  82. <!-- log4j日志 -->
  83. <dependency>
  84. <groupId>log4j</groupId>
  85. <artifactId>log4j</artifactId>
  86. <version>1.2.17</version>
  87. </dependency>
  88. <!--分页插件-->
  89. <dependency>
  90. <groupId>com.github.pagehelper</groupId>
  91. <artifactId>pagehelper</artifactId>
  92. <version>5.2.0</version>
  93. </dependency>
  94. <!-- 日志 -->
  95. <dependency>
  96. <groupId>ch.qos.logback</groupId>
  97. <artifactId>logback-classic</artifactId>
  98. <version>1.2.3</version>
  99. </dependency>
  100. <!-- ServletAPI -->
  101. <dependency>
  102. <groupId>javax.servlet</groupId>
  103. <artifactId>javax.servlet-api</artifactId>
  104. <version>3.1.0</version>
  105. <scope>provided</scope>
  106. </dependency>
  107. <!-- 处理json数据的依赖 -->
  108. <dependency>
  109. <groupId>com.fasterxml.jackson.core</groupId>
  110. <artifactId>jackson-databind</artifactId>
  111. <version>2.12.1</version>
  112. </dependency>
  113. <!-- 实现文件上传的依赖 -->
  114. <dependency>
  115. <groupId>commons-fileupload</groupId>
  116. <artifactId>commons-fileupload</artifactId>
  117. <version>1.3.1</version>
  118. </dependency>
  119. <!-- Spring5和Thymeleaf整合包 -->
  120. <dependency>
  121. <groupId>org.thymeleaf</groupId>
  122. <artifactId>thymeleaf-spring5</artifactId>
  123. <version>3.0.12.RELEASE</version>
  124. </dependency>
  125. </dependencies>
  126. </project>