pom.xml 5.0 KB

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