pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>data-gateway</artifactId>
  7. <groupId>com.usky</groupId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>data-gateway-eg-kat</artifactId>
  12. <dependencies>
  13. <!--MQTT依赖-->
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-integration</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.integration</groupId>
  20. <artifactId>spring-integration-mqtt</artifactId>
  21. <optional>true</optional>
  22. </dependency>
  23. <!-- <dependency>-->
  24. <!-- <groupId>com.usky</groupId>-->
  25. <!-- <artifactId>common-cloud-starter</artifactId>-->
  26. <!-- </dependency>-->
  27. <dependency>
  28. <groupId>org.springframework.cloud</groupId>
  29. <artifactId>spring-cloud-openfeign-core</artifactId>
  30. </dependency>
  31. <!-- <dependency>-->
  32. <!-- <groupId>com.usky</groupId>-->
  33. <!-- <artifactId>usky-common-core</artifactId>-->
  34. <!-- </dependency>-->
  35. <dependency>
  36. <groupId>com.alibaba</groupId>
  37. <artifactId>fastjson</artifactId>
  38. </dependency>
  39. <!--udp-->
  40. <dependency>
  41. <groupId>org.springframework.integration</groupId>
  42. <artifactId>spring-integration-ip</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-configuration-processor</artifactId>
  47. <optional>true</optional>
  48. </dependency>
  49. <!-- <dependency>-->
  50. <!-- <groupId>org.springframework.boot</groupId>-->
  51. <!-- <artifactId>spring-boot-starter-test</artifactId>-->
  52. <!-- <scope>test</scope>-->
  53. <!-- </dependency>-->
  54. <!-- Pagehelper -->
  55. <!-- <dependency>-->
  56. <!-- <groupId>com.github.pagehelper</groupId>-->
  57. <!-- <artifactId>pagehelper-spring-boot-starter</artifactId>-->
  58. <!-- </dependency>-->
  59. </dependencies>
  60. <build>
  61. <finalName>${project.artifactId}</finalName>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-maven-plugin</artifactId>
  66. <version>2.2.6.RELEASE</version>
  67. <executions>
  68. <execution>
  69. <goals>
  70. <goal>repackage</goal>
  71. </goals>
  72. </execution>
  73. </executions>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>