pom.xml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. <!--语音依赖-->
  26. <dependency>
  27. <groupId>com.aliyun</groupId>
  28. <artifactId>aliyun-java-sdk-dyvmsapi</artifactId>
  29. <version>1.2.2</version>
  30. </dependency>
  31. <!--短信依赖-->
  32. <dependency>
  33. <groupId>com.aliyun</groupId>
  34. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  35. <version>1.1.0</version>
  36. </dependency>
  37. <!--MQTT依赖-->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-integration</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.integration</groupId>
  44. <artifactId>spring-integration-mqtt</artifactId>
  45. </dependency>
  46. <!--websocket依赖-->
  47. <dependency>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-websocket</artifactId>
  50. <version>5.2.8.RELEASE</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.usky</groupId>
  54. <artifactId>service-alarm-api</artifactId>
  55. <version>0.0.1</version>
  56. <scope>compile</scope>
  57. </dependency>
  58. </dependencies>
  59. <build>
  60. <finalName>${project.artifactId}</finalName>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-maven-plugin</artifactId>
  65. <executions>
  66. <execution>
  67. <goals>
  68. <goal>repackage</goal>
  69. </goals>
  70. </execution>
  71. </executions>
  72. </plugin>
  73. <plugin>
  74. <groupId>com.github.shalousun</groupId>
  75. <artifactId>smart-doc-maven-plugin</artifactId>
  76. <version>2.1.1</version>
  77. <configuration>
  78. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  79. <configFile>./src/main/resources/smart-doc.json</configFile>
  80. <!--指定项目名称-->
  81. <projectName>test</projectName>
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. </build>
  86. </project>