2023-05-06 06:46:44 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2023-08-07 00:32:23 +00:00
|
|
|
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">
|
|
|
|
<parent>
|
|
|
|
<artifactId>iotkit-parent</artifactId>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2024-03-16 02:23:54 +00:00
|
|
|
<version>0.5.3</version>
|
2023-08-07 00:32:23 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>iot-starter</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
|
|
|
2024-02-08 16:12:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-web-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2024-03-16 02:23:54 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
|
|
<version>4.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2023-08-07 00:32:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-common-tenant</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-rule-engine</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--内置vertx消息总线-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-message-event-bus</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--打开注释使用rocketmq消息总线-->
|
2024-03-16 02:23:54 +00:00
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>cc.iotkit</groupId>-->
|
|
|
|
<!-- <artifactId>iot-message-rocketmq</artifactId>-->
|
|
|
|
<!-- </dependency>-->
|
2023-08-07 00:32:23 +00:00
|
|
|
|
2023-10-15 01:20:44 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-plugin-main</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-08-07 00:32:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-manager</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-system</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-openapi</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-data-serviceImpl-rdb</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2024-05-14 04:23:11 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-modbus</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-08-07 00:32:23 +00:00
|
|
|
<!--打开注释 启用es数据库-->
|
2024-02-25 03:46:15 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-temporal-serviceImpl-es</artifactId>
|
|
|
|
</dependency>
|
2023-08-07 00:32:23 +00:00
|
|
|
|
|
|
|
<!--打开注释 启用timescale数据库-->
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>cc.iotkit</groupId>-->
|
|
|
|
<!-- <artifactId>iot-temporal-serviceImpl-ts</artifactId>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
<!--打开注释 启用tdengine数据库-->
|
2024-03-16 02:23:54 +00:00
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>cc.iotkit</groupId>-->
|
|
|
|
<!-- <artifactId>iot-temporal-serviceImpl-td</artifactId>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
<!--内置oss-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-oss-embed</artifactId>
|
|
|
|
</dependency>
|
2023-08-07 00:32:23 +00:00
|
|
|
|
|
|
|
<!--====================第三方库===================-->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2024-05-14 04:23:11 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
|
|
<version>8.0.33</version>
|
|
|
|
</dependency>
|
2023-08-07 00:32:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-to-slf4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2023-09-19 00:48:28 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.gitee.starblues</groupId>
|
|
|
|
<artifactId>spring-brick</artifactId>
|
|
|
|
</dependency>
|
2023-08-07 00:32:23 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.ozimov</groupId>
|
|
|
|
<artifactId>embedded-redis</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch.plugin</groupId>
|
|
|
|
<artifactId>transport-netty4-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.0</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>cc.iotkit.Application</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>
|
|
|
|
${project.parent.basedir}/iot-starter/src/main/resources/assemblies/standalone-package.xml
|
|
|
|
</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2023-05-06 06:46:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
</project>
|