pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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>data-protocol-http</artifactId>
  7. <groupId>com.usky</groupId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>data-protocol-http-biz</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.usky</groupId>
  15. <artifactId>common-cloud-starter</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>cn.afterturn</groupId>
  19. <artifactId>easypoi-spring-boot-starter</artifactId>
  20. <version>4.1.0</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.aliyun</groupId>
  24. <artifactId>aliyun-java-sdk-core</artifactId>
  25. <version>4.5.16</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.aliyun</groupId>
  29. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  30. <version>1.1.0</version>
  31. </dependency>
  32. <!-- mqtt -->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-integration</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.integration</groupId>
  39. <artifactId>spring-integration-stream</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.integration</groupId>
  43. <artifactId>spring-integration-mqtt</artifactId>
  44. </dependency>
  45. <!--配置文件报错问题-->
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-configuration-processor</artifactId>
  49. <optional>true</optional>
  50. </dependency>
  51. <!--lombok-->
  52. <dependency>
  53. <groupId>org.projectlombok</groupId>
  54. <artifactId>lombok</artifactId>
  55. <version>1.18.22</version>
  56. <scope>provided</scope>
  57. </dependency>
  58. <!--websocket依赖-->
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-websocket</artifactId>
  62. <version>5.2.8.RELEASE</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.usky</groupId>
  66. <artifactId>service-agbox-api</artifactId>
  67. <version>0.0.1</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.github.binarywang</groupId>
  72. <artifactId>weixin-java-mp</artifactId>
  73. <version>4.3.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.ag.sdk</groupId>
  77. <artifactId>AgSdkBiz</artifactId>
  78. <version>1.8.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.ct.sdk</groupId>
  82. <artifactId>ctg-ag-sdk-core-2</artifactId>
  83. <version>1.8.0</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.usky</groupId>
  87. <artifactId>ruoyi-common-swagger</artifactId>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <finalName>${project.artifactId}</finalName>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-maven-plugin</artifactId>
  96. <version>2.2.6.RELEASE</version>
  97. <executions>
  98. <execution>
  99. <goals>
  100. <goal>repackage</goal>
  101. </goals>
  102. </execution>
  103. </executions>
  104. </plugin>
  105. <plugin>
  106. <groupId>com.github.shalousun</groupId>
  107. <artifactId>smart-doc-maven-plugin</artifactId>
  108. <version>2.1.1</version>
  109. <configuration>
  110. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  111. <configFile>./src/main/resources/smart-doc.json</configFile>
  112. <!--指定项目名称-->
  113. <projectName>test</projectName>
  114. <!-- <excludes>-->
  115. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  116. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  117. <!-- </excludes>-->
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. </project>