pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>service-iot</artifactId>
  5. <groupId>com.usky</groupId>
  6. <version>0.0.1</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>service-iot-biz</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.usky</groupId>
  13. <artifactId>common-cloud-starter</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>com.usky</groupId>
  17. <artifactId>service-backend-api</artifactId>
  18. <version>0.0.1</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.usky</groupId>
  22. <artifactId>data-transfer-api</artifactId>
  23. <version>0.0.1</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.usky</groupId>
  27. <artifactId>service-iot-api</artifactId>
  28. <version>0.0.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.afterturn</groupId>
  32. <artifactId>easypoi-spring-boot-starter</artifactId>
  33. <version>4.1.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.aliyun</groupId>
  37. <artifactId>aliyun-java-sdk-core</artifactId>
  38. <version>4.5.16</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.aliyun</groupId>
  42. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  43. <version>1.1.0</version>
  44. </dependency>
  45. <!--MQTT依赖-->
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-integration</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.integration</groupId>
  52. <artifactId>spring-integration-mqtt</artifactId>
  53. </dependency>
  54. <!--websocket依赖-->
  55. <dependency>
  56. <groupId>org.springframework</groupId>
  57. <artifactId>spring-websocket</artifactId>
  58. <version>5.2.8.RELEASE</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.usky</groupId>
  62. <artifactId>service-agbox-api</artifactId>
  63. <version>0.0.1</version>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.usky</groupId>
  68. <artifactId>service-system-api</artifactId>
  69. <version>0.0.1</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.github.binarywang</groupId>
  73. <artifactId>weixin-java-mp</artifactId>
  74. <version>4.3.0</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-amqp</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.usky</groupId>
  82. <artifactId>service-alarm-api</artifactId>
  83. <version>0.0.1</version>
  84. <scope>compile</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.usky</groupId>
  88. <artifactId>ruoyi-common-core</artifactId>
  89. </dependency>
  90. <!--钉钉-->
  91. <!--获取企业accessToken(企业内部应用) 新版SDK-->
  92. <dependency>
  93. <groupId>com.aliyun</groupId>
  94. <artifactId>dingtalk</artifactId>
  95. <version>2.1.34</version>
  96. </dependency>
  97. <!--旧版SDK-->
  98. <dependency>
  99. <groupId>com.aliyun</groupId>
  100. <artifactId>alibaba-dingtalk-service-sdk</artifactId>
  101. <version>2.0.0</version>
  102. </dependency>
  103. </dependencies>
  104. <build>
  105. <finalName>${project.artifactId}</finalName>
  106. <plugins>
  107. <plugin>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-maven-plugin</artifactId>
  110. <version>2.2.6.RELEASE</version>
  111. <executions>
  112. <execution>
  113. <goals>
  114. <goal>repackage</goal>
  115. </goals>
  116. </execution>
  117. </executions>
  118. </plugin>
  119. <plugin>
  120. <groupId>com.github.shalousun</groupId>
  121. <artifactId>smart-doc-maven-plugin</artifactId>
  122. <version>2.1.1</version>
  123. <configuration>
  124. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  125. <configFile>./src/main/resources/smart-doc.json</configFile>
  126. <!--指定项目名称-->
  127. <projectName>test</projectName>
  128. <!-- <excludes>-->
  129. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  130. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  131. <!-- </excludes>-->
  132. </configuration>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. </project>