pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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.github.binarywang</groupId>
  63. <artifactId>weixin-java-mp</artifactId>
  64. <version>4.3.0</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-amqp</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.usky</groupId>
  72. <artifactId>service-alarm-api</artifactId>
  73. <version>0.0.1</version>
  74. <scope>compile</scope>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <finalName>${project.artifactId}</finalName>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-maven-plugin</artifactId>
  83. <version>2.2.6.RELEASE</version>
  84. <executions>
  85. <execution>
  86. <goals>
  87. <goal>repackage</goal>
  88. </goals>
  89. </execution>
  90. </executions>
  91. </plugin>
  92. <plugin>
  93. <groupId>com.github.shalousun</groupId>
  94. <artifactId>smart-doc-maven-plugin</artifactId>
  95. <version>2.1.1</version>
  96. <configuration>
  97. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  98. <configFile>./src/main/resources/smart-doc.json</configFile>
  99. <!--指定项目名称-->
  100. <projectName>test</projectName>
  101. <!-- <excludes>-->
  102. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  103. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  104. <!-- </excludes>-->
  105. </configuration>
  106. </plugin>
  107. </plugins>
  108. </build>
  109. </project>