pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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-alarm</artifactId>
  5. <groupId>com.usky</groupId>
  6. <version>0.0.1</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>service-alarm-biz</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.usky</groupId>
  13. <artifactId>common-cloud-starter</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>cn.afterturn</groupId>
  17. <artifactId>easypoi-spring-boot-starter</artifactId>
  18. <version>4.1.0</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.aliyun</groupId>
  22. <artifactId>aliyun-java-sdk-core</artifactId>
  23. <version>4.5.16</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.aliyun</groupId>
  27. <artifactId>aliyun-java-sdk-dyvmsapi</artifactId>
  28. <version>1.2.2</version>
  29. </dependency>
  30. <!--MQTT依赖-->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-integration</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.integration</groupId>
  37. <artifactId>spring-integration-mqtt</artifactId>
  38. </dependency>
  39. <!--websocket依赖-->
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-websocket</artifactId>
  43. <version>5.2.8.RELEASE</version>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <finalName>${project.artifactId}</finalName>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-maven-plugin</artifactId>
  52. <executions>
  53. <execution>
  54. <goals>
  55. <goal>repackage</goal>
  56. </goals>
  57. </execution>
  58. </executions>
  59. </plugin>
  60. <plugin>
  61. <groupId>com.github.shalousun</groupId>
  62. <artifactId>smart-doc-maven-plugin</artifactId>
  63. <version>2.1.1</version>
  64. <configuration>
  65. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  66. <configFile>./src/main/resources/smart-doc.json</configFile>
  67. <!--指定项目名称-->
  68. <projectName>test</projectName>
  69. </configuration>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>