123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ~ Copyright 2016-present the original author or authors.
- ~
- ~ Licensed under the Apache License, Version 2.0 (the "License");
- ~ you may not use this file except in compliance with the License.
- ~ You may obtain a copy of the License at
- ~
- ~ https://www.apache.org/licenses/LICENSE-2.0
- ~
- ~ Unless required by applicable law or agreed to in writing, software
- ~ distributed under the License is distributed on an "AS IS" BASIS,
- ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- ~ See the License for the specific language governing permissions and
- ~ limitations under the License.
- -->
- <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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>io.github.pnoker</groupId>
- <artifactId>dc3-center</artifactId>
- <version>2023.4.5</version>
- </parent>
- <artifactId>dc3-center-data</artifactId>
- <packaging>jar</packaging>
- <description>IOT DC3 平台数据中心,包含Amqp,Websocket,Mqtt等通用消息中间件,通过消息订阅方式收集设备组信息。
- </description>
- <dependencies>
- <!-- Elasticsearch -->
- <dependency>
- <groupId>co.elastic.clients</groupId>
- <artifactId>elasticsearch-java</artifactId>
- </dependency>
- <dependency>
- <groupId>jakarta.json</groupId>
- <artifactId>jakarta.json-api</artifactId>
- </dependency>
- <!-- DC3 Api Manager -->
- <dependency>
- <groupId>io.github.pnoker</groupId>
- <artifactId>dc3-api-manager</artifactId>
- </dependency>
- <!-- DC3 Api Data -->
- <dependency>
- <groupId>io.github.pnoker</groupId>
- <artifactId>dc3-api-data</artifactId>
- </dependency>
- <!-- DC3 Common RabbitMQ -->
- <dependency>
- <groupId>io.github.pnoker</groupId>
- <artifactId>dc3-common-rabbitmq</artifactId>
- </dependency>
- <!-- DC3 Common MySQL -->
- <dependency>
- <groupId>io.github.pnoker</groupId>
- <artifactId>dc3-common-mysql</artifactId>
- </dependency>
- <!-- DC3 Common Mongo -->
- <dependency>
- <groupId>io.github.pnoker</groupId>
- <artifactId>dc3-common-mongo</artifactId>
- </dependency>
- <!-- DC3 Common Redis -->
- <dependency>
- <groupId>io.github.pnoker</groupId>
- <artifactId>dc3-common-redis</artifactId>
- </dependency>
- <!-- DC3 Common Influx -->
- <dependency>
- <groupId>io.github.pnoker</groupId>
- <artifactId>dc3-common-influx</artifactId>
- </dependency>
- <!-- DC3 Common tdengine -->
- <!--<dependency>
- <groupId>io.github.pnoker</groupId>
- <artifactId>dc3-common-tdengine</artifactId>
- </dependency>-->
- <!-- DC3 Common Quartz -->
- <dependency>
- <groupId>io.github.pnoker</groupId>
- <artifactId>dc3-common-quartz</artifactId>
- </dependency>
- <dependency>
- <groupId>com.squareup.okhttp3</groupId>
- <artifactId>okhttp</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|