187 lines
6.5 KiB
XML
187 lines
6.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Licensed to the Apache Software Foundation (ASF) under one or more
|
|
~ contributor license agreements. See the NOTICE file distributed with
|
|
~ this work for additional information regarding copyright ownership.
|
|
~ The ASF licenses this file to You 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
|
|
~
|
|
~ http://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>org.apache.hertzbeat</groupId>
|
|
<artifactId>hertzbeat-collector</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
|
|
<artifactId>hertzbeat-collector-basic</artifactId>
|
|
<name>${project.artifactId}</name>
|
|
|
|
<properties>
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<mqtt.version>1.2.5</mqtt.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.hertzbeat</groupId>
|
|
<artifactId>hertzbeat-collector-common</artifactId>
|
|
</dependency>
|
|
<!-- spring -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- run sql script-->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-jdbc</artifactId>
|
|
</dependency>
|
|
<!-- kafka -->
|
|
<dependency>
|
|
<groupId>org.apache.kafka</groupId>
|
|
<artifactId>kafka-clients</artifactId>
|
|
</dependency>
|
|
<!-- http -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
</dependency>
|
|
<!--network-->
|
|
<dependency>
|
|
<groupId>commons-net</groupId>
|
|
<artifactId>commons-net</artifactId>
|
|
</dependency>
|
|
<!-- clickhouse -->
|
|
<dependency>
|
|
<groupId>com.clickhouse</groupId>
|
|
<artifactId>clickhouse-jdbc</artifactId>
|
|
</dependency>
|
|
<!-- dm -->
|
|
<dependency>
|
|
<groupId>com.dameng</groupId>
|
|
<artifactId>DmJdbcDriver18</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.xugudb</groupId>
|
|
<artifactId>xugu-jdbc</artifactId>
|
|
</dependency>
|
|
<!-- postgresql -->
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.i2p.crypto</groupId>
|
|
<artifactId>eddsa</artifactId>
|
|
<version>${eddsa.version}</version>
|
|
</dependency>
|
|
<!-- sql server -->
|
|
<dependency>
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
<artifactId>mssql-jdbc</artifactId>
|
|
</dependency>
|
|
<!-- oracle -->
|
|
<dependency>
|
|
<groupId>com.oracle.database.jdbc</groupId>
|
|
<artifactId>ojdbc8</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.oracle.database.nls</groupId>
|
|
<artifactId>orai18n</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- db2 -->
|
|
<dependency>
|
|
<groupId>com.ibm.db2</groupId>
|
|
<artifactId>jcc</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!--redis-->
|
|
<dependency>
|
|
<groupId>io.lettuce</groupId>
|
|
<artifactId>lettuce-core</artifactId>
|
|
</dependency>
|
|
<!--snmp-->
|
|
<dependency>
|
|
<groupId>org.snmp4j</groupId>
|
|
<artifactId>snmp4j</artifactId>
|
|
<version>${snmp4j.version}</version>
|
|
</dependency>
|
|
<!--dns-->
|
|
<dependency>
|
|
<groupId>dnsjava</groupId>
|
|
<artifactId>dnsjava</artifactId>
|
|
<version>${dnsjava.version}</version>
|
|
</dependency>
|
|
<!-- consul -->
|
|
<dependency>
|
|
<groupId>com.ecwid.consul</groupId>
|
|
<artifactId>consul-api</artifactId>
|
|
<version>${consul-api.version}</version>
|
|
</dependency>
|
|
<!-- nacos -->
|
|
<dependency>
|
|
<groupId>com.alibaba.nacos</groupId>
|
|
<artifactId>nacos-client</artifactId>
|
|
<version>${nacos-client.version}</version>
|
|
</dependency>
|
|
<!-- mqtt -->
|
|
<dependency>
|
|
<groupId>org.eclipse.paho</groupId>
|
|
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
|
|
<version>${mqtt.version}</version>
|
|
</dependency>
|
|
<!--Bouncy Castle-->
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcpkix-jdk15on</artifactId>
|
|
<version>1.68</version>
|
|
</dependency>
|
|
|
|
|
|
<!--plc-->
|
|
<dependency>
|
|
<groupId>org.apache.plc4x</groupId>
|
|
<artifactId>plc4j-api</artifactId>
|
|
<version>0.12.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.plc4x</groupId>
|
|
<artifactId>plc4j-driver-modbus</artifactId>
|
|
<version>0.12.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.plc4x</groupId>
|
|
<artifactId>plc4j-driver-s7</artifactId>
|
|
<version>0.12.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.sshd</groupId>
|
|
<artifactId>sshd-sftp</artifactId>
|
|
</dependency>
|
|
<!-- Zookeeper -->
|
|
<dependency>
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
<artifactId>zookeeper</artifactId>
|
|
<version>${zookeeper.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|