pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.7.2</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.yupi</groupId>
  13. <artifactId>yuso-backend</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <name>yuso-backend</name>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-freemarker</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-aop</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.mybatis.spring.boot</groupId>
  34. <artifactId>mybatis-spring-boot-starter</artifactId>
  35. <version>2.2.2</version>
  36. </dependency>
  37. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-boot-starter</artifactId>
  41. <version>3.5.2</version>
  42. </dependency>
  43. <!-- redis -->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-data-redis</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.session</groupId>
  50. <artifactId>spring-session-data-redis</artifactId>
  51. </dependency>
  52. <!-- elasticsearch-->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  56. </dependency>
  57. <!-- https://mvnrepository.com/artifact/com.github.binarywang/wx-java-mp-spring-boot-starter -->
  58. <dependency>
  59. <groupId>com.github.binarywang</groupId>
  60. <artifactId>wx-java-mp-spring-boot-starter</artifactId>
  61. <version>4.4.0</version>
  62. </dependency>
  63. <!-- https://doc.xiaominfo.com/knife4j/documentation/get_start.html-->
  64. <dependency>
  65. <groupId>com.github.xiaoymin</groupId>
  66. <artifactId>knife4j-spring-boot-starter</artifactId>
  67. <version>3.0.3</version>
  68. </dependency>
  69. <!-- https://cloud.tencent.com/document/product/436/10199-->
  70. <dependency>
  71. <groupId>com.qcloud</groupId>
  72. <artifactId>cos_api</artifactId>
  73. <version>5.6.89</version>
  74. </dependency>
  75. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  76. <dependency>
  77. <groupId>org.apache.commons</groupId>
  78. <artifactId>commons-lang3</artifactId>
  79. </dependency>
  80. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  81. <dependency>
  82. <groupId>com.google.code.gson</groupId>
  83. <artifactId>gson</artifactId>
  84. <version>2.9.1</version>
  85. </dependency>
  86. <!-- https://github.com/alibaba/easyexcel -->
  87. <dependency>
  88. <groupId>com.alibaba</groupId>
  89. <artifactId>easyexcel</artifactId>
  90. <version>3.1.1</version>
  91. </dependency>
  92. <!-- https://hutool.cn/docs/index.html#/-->
  93. <dependency>
  94. <groupId>cn.hutool</groupId>
  95. <artifactId>hutool-all</artifactId>
  96. <version>5.8.8</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-devtools</artifactId>
  101. <scope>runtime</scope>
  102. <optional>true</optional>
  103. </dependency>
  104. <dependency>
  105. <groupId>mysql</groupId>
  106. <artifactId>mysql-connector-java</artifactId>
  107. <scope>runtime</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-configuration-processor</artifactId>
  112. <optional>true</optional>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.projectlombok</groupId>
  116. <artifactId>lombok</artifactId>
  117. <optional>true</optional>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-starter-test</artifactId>
  122. <scope>test</scope>
  123. </dependency>
  124. </dependencies>
  125. <build>
  126. <plugins>
  127. <plugin>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-maven-plugin</artifactId>
  130. <configuration>
  131. <excludes>
  132. <exclude>
  133. <groupId>org.projectlombok</groupId>
  134. <artifactId>lombok</artifactId>
  135. </exclude>
  136. </excludes>
  137. </configuration>
  138. </plugin>
  139. </plugins>
  140. </build>
  141. </project>