pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. <parent>
  6. <artifactId>spring-boot</artifactId>
  7. <groupId>com.flyhigh</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>core</artifactId>
  12. <dependencies>
  13. <!-- 日志 -->
  14. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-log4j2 -->
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-logging</artifactId>
  18. <exclusions>
  19. <!-- 去掉logback日志依赖 -->
  20. <exclusion>
  21. <groupId>*</groupId>
  22. <artifactId>*</artifactId>
  23. </exclusion>
  24. </exclusions>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-log4j2</artifactId>
  29. </dependency>
  30. <!-- Spring MVC-->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-web</artifactId>
  34. </dependency>
  35. <!-- Redis-->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-data-redis</artifactId>
  39. </dependency>
  40. <!-- 校验validation-->
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-validation</artifactId>
  44. </dependency>
  45. <!-- 加密-->
  46. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
  47. <dependency>
  48. <groupId>org.bouncycastle</groupId>
  49. <artifactId>bcprov-jdk15on</artifactId>
  50. </dependency>
  51. <!-- JWT-->
  52. <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-impl -->
  53. <dependency>
  54. <groupId>io.jsonwebtoken</groupId>
  55. <artifactId>jjwt-impl</artifactId>
  56. </dependency>
  57. <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-jackson -->
  58. <dependency>
  59. <groupId>io.jsonwebtoken</groupId>
  60. <artifactId>jjwt-jackson</artifactId>
  61. </dependency>
  62. <!-- 反向代理-->
  63. <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
  64. <dependency>
  65. <groupId>org.aspectj</groupId>
  66. <artifactId>aspectjweaver</artifactId>
  67. </dependency>
  68. <!--jackson LocalDateTime支持 -->
  69. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310 -->
  70. <dependency>
  71. <groupId>com.fasterxml.jackson.datatype</groupId>
  72. <artifactId>jackson-datatype-jsr310</artifactId>
  73. </dependency>
  74. <!-- 通用工具-->
  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/org.apache.httpcomponents/httpclient -->
  81. <dependency>
  82. <groupId>org.apache.httpcomponents</groupId>
  83. <artifactId>httpclient</artifactId>
  84. </dependency>
  85. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  86. <dependency>
  87. <groupId>org.apache.poi</groupId>
  88. <artifactId>poi-ooxml</artifactId>
  89. </dependency>
  90. <!-- 数据库-->
  91. <dependency>
  92. <groupId>org.mybatis.spring.boot</groupId>
  93. <artifactId>mybatis-spring-boot-starter</artifactId>
  94. </dependency>
  95. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  96. <dependency>
  97. <groupId>mysql</groupId>
  98. <artifactId>mysql-connector-java</artifactId>
  99. </dependency>
  100. <!-- https://mvnrepository.com/artifact/org.mybatis.dynamic-sql/mybatis-dynamic-sql -->
  101. <dependency>
  102. <groupId>org.mybatis.dynamic-sql</groupId>
  103. <artifactId>mybatis-dynamic-sql</artifactId>
  104. </dependency>
  105. <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter -->
  106. <dependency>
  107. <groupId>com.github.pagehelper</groupId>
  108. <artifactId>pagehelper-spring-boot-starter</artifactId>
  109. </dependency>
  110. <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
  111. <dependency>
  112. <groupId>commons-fileupload</groupId>
  113. <artifactId>commons-fileupload</artifactId>
  114. </dependency>
  115. <!-- 邮件 -->
  116. <dependency>
  117. <groupId>com.sun.mail</groupId>
  118. <artifactId>jakarta.mail</artifactId>
  119. </dependency>
  120. <!-- 文档生成 -->
  121. <dependency>
  122. <groupId>com.flyhigh</groupId>
  123. <artifactId>apidoc-core</artifactId>
  124. </dependency>
  125. <!-- 配置处理器-->
  126. <dependency>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-configuration-processor</artifactId>
  129. <scope>compile</scope>
  130. </dependency>
  131. <!-- 对象拷贝-->
  132. <dependency>
  133. <groupId>ma.glasnost.orika</groupId>
  134. <artifactId>orika-core</artifactId>
  135. </dependency>
  136. <!-- 热部署 -->
  137. <dependency>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-devtools</artifactId>
  140. </dependency>
  141. <!-- springboot admin client-->
  142. <dependency>
  143. <groupId>de.codecentric</groupId>
  144. <artifactId>spring-boot-admin-starter-client</artifactId>
  145. </dependency>
  146. </dependencies>
  147. </project>