非网用户数据统计项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

134 lines
4.7 KiB

1 month ago
  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.system</groupId>
  7. <artifactId>test</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>17</maven.compiler.source>
  11. <maven.compiler.target>17</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <system.version>1.1.1</system.version>
  14. <spring.boot.version>3.4.4</spring.boot.version>
  15. <mybatis.starter.version>3.0.5</mybatis.starter.version>
  16. <mysql.version>8.3.0</mysql.version>
  17. <lombok.version>1.18.38</lombok.version>
  18. <slf4j.version>2.0.17</slf4j.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. <version>${spring.boot.version}</version>
  25. </dependency>
  26. <!-- AOP支持 -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-aop</artifactId>
  30. <version>${spring.boot.version}</version>
  31. </dependency>
  32. <!-- https://mvnrepository.com/artifact/cglib/cglib -->
  33. <dependency>
  34. <groupId>cglib</groupId>
  35. <artifactId>cglib</artifactId>
  36. <version>3.3.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-aspects</artifactId>
  41. <version>6.2.5</version>
  42. </dependency>
  43. <!-- https://mvnrepository.com/artifact/org.mybatis.spring.boot/mybatis-spring-boot-starter -->
  44. <dependency>
  45. <groupId>org.mybatis.spring.boot</groupId>
  46. <artifactId>mybatis-spring-boot-starter</artifactId>
  47. <version>${mybatis.starter.version}</version>
  48. </dependency>
  49. <!-- https://mvnrepository.com/artifact/com.mysql/mysql-connector-j -->
  50. <dependency>
  51. <groupId>com.mysql</groupId>
  52. <artifactId>mysql-connector-j</artifactId>
  53. <version>${mysql.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.slf4j</groupId>
  57. <artifactId>slf4j-api</artifactId>
  58. <version>${slf4j.version}</version> <!-- 版本号与项目中其他日志组件保持兼容 -->
  59. </dependency>
  60. <dependency>
  61. <groupId>org.projectlombok</groupId>
  62. <artifactId>lombok</artifactId>
  63. <version>${lombok.version}</version>
  64. <scope>provided</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>cn.hutool</groupId>
  68. <artifactId>hutool-all</artifactId>
  69. <version>5.8.39</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.alibaba</groupId>
  73. <artifactId>fastjson</artifactId>
  74. <version>2.0.53</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.aliyun.oss</groupId>
  78. <artifactId>aliyun-sdk-oss</artifactId>
  79. <version>3.17.4</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-mail</artifactId>
  84. <version>3.4.4</version>
  85. </dependency>
  86. <!-- <dependency>-->
  87. <!-- <groupId>org.springframework.boot</groupId>-->
  88. <!-- <artifactId>spring-boot-starter-test</artifactId>-->
  89. <!-- <version>3.4.4</version>-->
  90. <!-- <scope>test</scope>-->
  91. <!-- </dependency>-->
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-cache</artifactId>
  95. <version>3.4.4</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-data-redis</artifactId>
  100. <version>3.4.4</version>
  101. </dependency>
  102. <!-- 在dependencies节点中添加 -->
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-starter-jdbc</artifactId>
  106. <version>${spring.boot.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.microsoft.sqlserver</groupId>
  110. <artifactId>mssql-jdbc</artifactId>
  111. <version>11.2.1.jre8</version>
  112. </dependency>
  113. </dependencies>
  114. </project>