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"
|
|
|
|
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>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>iot-starter</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-06-11 13:33:40 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-05-06 06:46:44 +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>
|
|
|
|
|
|
|
|
<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>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aliyun.oss</groupId>
|
|
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
</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>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-05-17 08:24:21 +00:00
|
|
|
<artifactId>iot-common-model</artifactId>
|
2023-05-06 06:46:44 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-common-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-rule-engine</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-component-server</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-component-converter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-virtual-device</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-message-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--内置vertx消息总线-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-05-17 08:24:21 +00:00
|
|
|
<artifactId>iot-message-event-bus</artifactId>
|
2023-05-06 06:46:44 +00:00
|
|
|
</dependency>
|
2023-06-01 12:22:37 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-common-doc</artifactId>
|
|
|
|
</dependency>
|
2023-05-06 06:46:44 +00:00
|
|
|
|
2023-06-01 12:22:37 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-manager</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-system</artifactId>
|
|
|
|
</dependency>
|
2023-06-11 12:55:20 +00:00
|
|
|
<!-- <dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-baetyl</artifactId>
|
|
|
|
</dependency>-->
|
2023-05-06 06:46:44 +00:00
|
|
|
<!--打开注释使用rocketmq消息总线-->
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>cc.iotkit</groupId>-->
|
|
|
|
<!-- <artifactId>iot-message-rocketmq</artifactId>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-temporal-service</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-05-17 08:24:21 +00:00
|
|
|
<artifactId>iot-data-serviceImpl-rdb</artifactId>
|
2023-05-06 06:46:44 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--打开注释 启用es数据库-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-05-17 08:24:21 +00:00
|
|
|
<artifactId>iot-temporal-serviceImpl-es</artifactId>
|
2023-05-06 06:46:44 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--打开注释 启用timescale数据库-->
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>cc.iotkit</groupId>-->
|
2023-05-17 08:24:21 +00:00
|
|
|
<!-- <artifactId>iot-temporal-serviceImpl-ts</artifactId>-->
|
2023-05-06 06:46:44 +00:00
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
<!--打开注释 启用tdengine数据库-->
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>cc.iotkit</groupId>-->
|
2023-05-17 08:24:21 +00:00
|
|
|
<!-- <artifactId>iot-temproal-serviceImpl-td</artifactId>-->
|
2023-05-06 06:46:44 +00:00
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-05-17 08:24:21 +00:00
|
|
|
<artifactId>iot-data-serviceImpl-cache</artifactId>
|
2023-05-06 06:46:44 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.0</version>
|
|
|
|
<configuration>
|
2023-05-15 00:31:02 +00:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2023-05-06 06:46:44 +00:00
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
2023-05-08 06:03:47 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
|
2023-05-06 06:46:44 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
2023-05-08 06:03:47 +00:00
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>cc.iotkit.Application</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
2023-05-06 06:46:44 +00:00
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|