pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.anyway.favor</groupId>
  5. <artifactId>favor-bill</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>war</packaging>
  8. <properties>
  9. <maven.compiler.source>8</maven.compiler.source>
  10. <maven.compiler.target>8</maven.compiler.target>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <springframework.version>5.2.15.RELEASE</springframework.version>
  13. </properties>
  14. <dependencies>
  15. <!--Spring核心依赖-->
  16. <dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-core</artifactId>
  19. <version>${springframework.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework</groupId>
  23. <artifactId>spring-beans</artifactId>
  24. <version>${springframework.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework</groupId>
  28. <artifactId>spring-context</artifactId>
  29. <version>${springframework.version}</version>
  30. </dependency>
  31. <!--SpringMVC依赖-->
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-webmvc</artifactId>
  35. <version>${springframework.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>javax.servlet</groupId>
  39. <artifactId>javax.servlet-api</artifactId>
  40. <version>4.0.1</version>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/taglibs/standard -->
  43. <dependency>
  44. <groupId>taglibs</groupId>
  45. <artifactId>standard</artifactId>
  46. <version>1.1.2</version>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
  49. <dependency>
  50. <groupId>javax.servlet</groupId>
  51. <artifactId>jstl</artifactId>
  52. <version>1.2</version>
  53. </dependency>
  54. <!-- 消息转换器处理Json格式数据 -->
  55. <dependency>
  56. <groupId>com.fasterxml.jackson.core</groupId>
  57. <artifactId>jackson-databind</artifactId>
  58. <version>2.15.2</version>
  59. </dependency>
  60. <!--mysql驱动-->
  61. <dependency>
  62. <groupId>mysql</groupId>
  63. <artifactId>mysql-connector-java</artifactId>
  64. <version>8.0.28</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring-jdbc</artifactId>
  69. <version>${springframework.version}</version>
  70. </dependency>
  71. <!--mybatis-->
  72. <dependency>
  73. <groupId>org.mybatis</groupId>
  74. <artifactId>mybatis</artifactId>
  75. <version>3.5.9</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.mybatis</groupId>
  79. <artifactId>mybatis-spring</artifactId>
  80. <version>2.1.1</version>
  81. </dependency>
  82. <!--mybatis分页-->
  83. <dependency>
  84. <groupId>com.github.pagehelper</groupId>
  85. <artifactId>pagehelper</artifactId>
  86. <version>6.1.0</version>
  87. </dependency>
  88. <!--mybatis plus -->
  89. <dependency>
  90. <groupId>com.baomidou</groupId>
  91. <artifactId>mybatis-plus</artifactId>
  92. <version>3.5.3.2</version>
  93. </dependency>
  94. <!--lombok-->
  95. <dependency>
  96. <groupId>org.projectlombok</groupId>
  97. <artifactId>lombok</artifactId>
  98. <version>1.18.24</version>
  99. </dependency>
  100. <!--加载日志-->
  101. <dependency>
  102. <groupId>org.slf4j</groupId>
  103. <artifactId>slf4j-api</artifactId>
  104. <version>1.7.25</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>log4j</groupId>
  108. <artifactId>log4j</artifactId>
  109. <version>1.2.17</version>
  110. </dependency>
  111. <!-- StringUtils -->
  112. <dependency>
  113. <groupId>commons-lang</groupId>
  114. <artifactId>commons-lang</artifactId>
  115. <version>2.6</version>
  116. </dependency>
  117. </dependencies>
  118. </project>