pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.8.5</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>ruoyi-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- spring-boot-devtools -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-devtools</artifactId>
  21. <optional>true</optional> <!-- 表示依赖不会传递 -->
  22. </dependency>
  23. <!-- trtc tls-sig-api-v2 -->
  24. <dependency>
  25. <groupId>com.github.tencentyun</groupId>
  26. <artifactId>tls-sig-api-v2</artifactId>
  27. <version>2.0</version>
  28. </dependency>
  29. <!-- swagger3-->
  30. <dependency>
  31. <groupId>io.springfox</groupId>
  32. <artifactId>springfox-boot-starter</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.integration</groupId>
  36. <artifactId>spring-integration-mqtt</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>net.coobird</groupId>
  40. <artifactId>thumbnailator</artifactId>
  41. <version>0.4.19</version>
  42. </dependency>
  43. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  44. <dependency>
  45. <groupId>io.swagger</groupId>
  46. <artifactId>swagger-models</artifactId>
  47. <version>1.6.2</version>
  48. </dependency>
  49. <!-- Mysql驱动包 -->
  50. <dependency>
  51. <groupId>com.mysql</groupId>
  52. <artifactId>mysql-connector-j</artifactId>
  53. </dependency>
  54. <!-- 核心模块-->
  55. <dependency>
  56. <groupId>com.ruoyi</groupId>
  57. <artifactId>ruoyi-framework</artifactId>
  58. </dependency>
  59. <!-- 定时任务-->
  60. <dependency>
  61. <groupId>com.ruoyi</groupId>
  62. <artifactId>ruoyi-quartz</artifactId>
  63. </dependency>
  64. <!-- 代码生成-->
  65. <dependency>
  66. <groupId>com.ruoyi</groupId>
  67. <artifactId>ruoyi-generator</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.jetbrains</groupId>
  75. <artifactId>annotations</artifactId>
  76. <version>RELEASE</version>
  77. <scope>compile</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.httpcomponents</groupId>
  81. <artifactId>httpclient</artifactId>
  82. <version>4.5.14</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.google.firebase</groupId>
  86. <artifactId>firebase-admin</artifactId>
  87. <version>9.7.0</version>
  88. </dependency>
  89. <!-- Apache HttpClient 5 (Firebase Admin SDK 9.7.0 所需依赖) -->
  90. <dependency>
  91. <groupId>org.apache.httpcomponents.client5</groupId>
  92. <artifactId>httpclient5</artifactId>
  93. <version>5.2.1</version>
  94. </dependency>
  95. <!-- Apache HttpCore 5 (HttpClient 5 的核心依赖,包含 reactor) -->
  96. <dependency>
  97. <groupId>org.apache.httpcomponents.core5</groupId>
  98. <artifactId>httpcore5</artifactId>
  99. <version>5.2.1</version>
  100. </dependency>
  101. <!-- Apache HttpCore 5 HTTP/2 支持 -->
  102. <dependency>
  103. <groupId>org.apache.httpcomponents.core5</groupId>
  104. <artifactId>httpcore5-h2</artifactId>
  105. <version>5.2.1</version>
  106. </dependency>
  107. </dependencies>
  108. <build>
  109. <plugins>
  110. <plugin>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-maven-plugin</artifactId>
  113. <version>3.3.5</version>
  114. <configuration>
  115. <addResources>true</addResources>
  116. </configuration>
  117. <executions>
  118. <execution>
  119. <goals>
  120. <goal>repackage</goal>
  121. </goals>
  122. </execution>
  123. </executions>
  124. </plugin>
  125. <plugin>
  126. <groupId>org.apache.maven.plugins</groupId>
  127. <artifactId>maven-war-plugin</artifactId>
  128. <version>3.1.0</version>
  129. <configuration>
  130. <failOnMissingWebXml>false</failOnMissingWebXml>
  131. <warName>${project.artifactId}</warName>
  132. </configuration>
  133. </plugin>
  134. </plugins>
  135. <finalName>${project.artifactId}</finalName>
  136. </build>
  137. </project>