203 lines
6.1 KiB
XML
Executable File
203 lines
6.1 KiB
XML
Executable File
<?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>0.4.1-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>iot-standalone</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<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>cc.iotkit</groupId>
|
|
<artifactId>iot-model</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-common</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-auth-server</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-virtual-device</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-message-bus</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-temporal-service</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-rdb-data-service</artifactId>
|
|
</dependency>
|
|
|
|
<!--打开注释 启用es数据库-->
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-es-temporal-service</artifactId>
|
|
</dependency>
|
|
|
|
<!--打开注释 启用tdengine数据库-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cc.iotkit</groupId>-->
|
|
<!-- <artifactId>iot-td-temporal-service</artifactId>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-data-cache</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.0</version>
|
|
<configuration>
|
|
<source>11</source>
|
|
<target>11</target>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-package</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<configuration>
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
<descriptorRefs>
|
|
<descriptorRef>standalone-package</descriptorRef>
|
|
</descriptorRefs>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>make-assembly</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
|
|
</project> |