pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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-issue</artifactId>
  5. <groupId>com.usky</groupId>
  6. <version>0.0.1</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>service-issue-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-issue-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. </dependencies>
  56. <build>
  57. <finalName>${project.artifactId}</finalName>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-maven-plugin</artifactId>
  62. <version>2.2.6.RELEASE</version>
  63. <executions>
  64. <execution>
  65. <goals>
  66. <goal>repackage</goal>
  67. </goals>
  68. </execution>
  69. </executions>
  70. </plugin>
  71. <plugin>
  72. <groupId>com.github.shalousun</groupId>
  73. <artifactId>smart-doc-maven-plugin</artifactId>
  74. <version>2.1.1</version>
  75. <configuration>
  76. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  77. <configFile>./src/main/resources/smart-doc.json</configFile>
  78. <!--指定项目名称-->
  79. <projectName>test</projectName>
  80. <!-- <excludes>-->
  81. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  82. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  83. <!-- </excludes>-->
  84. </configuration>
  85. </plugin>
  86. </plugins>
  87. </build>
  88. </project>