pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2016-present the original author or authors.
  4. ~
  5. ~ Licensed under the Apache License, Version 2.0 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ https://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. -->
  17. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  18. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  19. <modelVersion>4.0.0</modelVersion>
  20. <parent>
  21. <groupId>io.github.pnoker</groupId>
  22. <artifactId>dc3-center</artifactId>
  23. <version>2023.4.5</version>
  24. </parent>
  25. <artifactId>dc3-center-data</artifactId>
  26. <packaging>jar</packaging>
  27. <description>IOT DC3 平台数据中心,包含Amqp,Websocket,Mqtt等通用消息中间件,通过消息订阅方式收集设备组信息。
  28. </description>
  29. <dependencies>
  30. <!-- Elasticsearch -->
  31. <dependency>
  32. <groupId>co.elastic.clients</groupId>
  33. <artifactId>elasticsearch-java</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>jakarta.json</groupId>
  37. <artifactId>jakarta.json-api</artifactId>
  38. </dependency>
  39. <!-- DC3 Api Manager -->
  40. <dependency>
  41. <groupId>io.github.pnoker</groupId>
  42. <artifactId>dc3-api-manager</artifactId>
  43. </dependency>
  44. <!-- DC3 Api Data -->
  45. <dependency>
  46. <groupId>io.github.pnoker</groupId>
  47. <artifactId>dc3-api-data</artifactId>
  48. </dependency>
  49. <!-- DC3 Common RabbitMQ -->
  50. <dependency>
  51. <groupId>io.github.pnoker</groupId>
  52. <artifactId>dc3-common-rabbitmq</artifactId>
  53. </dependency>
  54. <!-- DC3 Common MySQL -->
  55. <dependency>
  56. <groupId>io.github.pnoker</groupId>
  57. <artifactId>dc3-common-mysql</artifactId>
  58. </dependency>
  59. <!-- DC3 Common Mongo -->
  60. <dependency>
  61. <groupId>io.github.pnoker</groupId>
  62. <artifactId>dc3-common-mongo</artifactId>
  63. </dependency>
  64. <!-- DC3 Common Redis -->
  65. <dependency>
  66. <groupId>io.github.pnoker</groupId>
  67. <artifactId>dc3-common-redis</artifactId>
  68. </dependency>
  69. <!-- DC3 Common Influx -->
  70. <dependency>
  71. <groupId>io.github.pnoker</groupId>
  72. <artifactId>dc3-common-influx</artifactId>
  73. </dependency>
  74. <!-- DC3 Common tdengine -->
  75. <!--<dependency>
  76. <groupId>io.github.pnoker</groupId>
  77. <artifactId>dc3-common-tdengine</artifactId>
  78. </dependency>-->
  79. <!-- DC3 Common Quartz -->
  80. <dependency>
  81. <groupId>io.github.pnoker</groupId>
  82. <artifactId>dc3-common-quartz</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.squareup.okhttp3</groupId>
  86. <artifactId>okhttp</artifactId>
  87. </dependency>
  88. </dependencies>
  89. <build>
  90. <plugins>
  91. <plugin>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-maven-plugin</artifactId>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </project>