pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. </dependencies>
  86. <build>
  87. <finalName>${project.artifactId}</finalName>
  88. <plugins>
  89. <plugin>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-maven-plugin</artifactId>
  92. <version>2.2.6.RELEASE</version>
  93. <executions>
  94. <execution>
  95. <goals>
  96. <goal>repackage</goal>
  97. </goals>
  98. </execution>
  99. </executions>
  100. </plugin>
  101. <plugin>
  102. <groupId>com.github.shalousun</groupId>
  103. <artifactId>smart-doc-maven-plugin</artifactId>
  104. <version>2.1.1</version>
  105. <configuration>
  106. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  107. <configFile>./src/main/resources/smart-doc.json</configFile>
  108. <!--指定项目名称-->
  109. <projectName>test</projectName>
  110. <!-- <excludes>-->
  111. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  112. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  113. <!-- </excludes>-->
  114. </configuration>
  115. </plugin>
  116. </plugins>
  117. </build>
  118. </project>