143 lines
4.8 KiB
XML
143 lines
4.8 KiB
XML
<?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>iot-data-bus</artifactId>
|
|
<groupId>com.fourfaith.iot</groupId>
|
|
<version>2.7.9-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>iot-data-bus-server</artifactId>
|
|
<packaging>${project.packaging}</packaging>
|
|
<name>${project.name}</name>
|
|
|
|
<properties>
|
|
<!--不发布该包 -->
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.name>iot-data-bus</project.name>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.fourfaith.iot</groupId>
|
|
<artifactId>iot-device-access-netty-client</artifactId>
|
|
<version>2.7.9-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fourfaith.iot</groupId>
|
|
<artifactId>iot-device-common</artifactId>
|
|
<version>2.7.9-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fourfaith.iot</groupId>
|
|
<artifactId>iot-data-bus-client</artifactId>
|
|
<version>2.7.9-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fourfaith.iot</groupId>
|
|
<artifactId>iot-device-manager-client</artifactId>
|
|
<version>2.7.9-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!--集成kafka-->
|
|
<dependency>
|
|
<groupId>org.springframework.kafka</groupId>
|
|
<artifactId>spring-kafka</artifactId>
|
|
</dependency>
|
|
<!-- hutool 工具包 -->
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fourfaith.framework</groupId>
|
|
<artifactId>fourfaith-dubbo</artifactId>
|
|
<version>2.0.2-SNAPSHOT</version>
|
|
<exclusions>
|
|
<!-- 排除log4j1的方式 -->
|
|
<exclusion>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
</exclusion>
|
|
<!-- 排除logback的方式 -->
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- Redis依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
</dependency>
|
|
|
|
<!--mqtt start -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-integration</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-stream</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-mqtt</artifactId>
|
|
</dependency>
|
|
<!--mqtt end -->
|
|
|
|
<!-- springboot注解执行器 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.reflections</groupId>
|
|
<artifactId>reflections</artifactId>
|
|
<version>0.9.11</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>pro</id>
|
|
<properties>
|
|
<env>pro</env>
|
|
<project.packaging>jar</project.packaging>
|
|
</properties>
|
|
<build>
|
|
<finalName>${project.name}-${packaging.version}-${maven.build.timestamp}</finalName>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project> |