|
|
|
<?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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>com.huaxing.iot</groupId>
|
|
|
|
<artifactId>data-bridge</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>data-framework</artifactId>
|
|
|
|
<description>framework</description>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>data-framework</name>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 设置 Java 源版本和目标版本为 1.8 -->
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
<version>5.3.20</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
|
|
<artifactId>swagger-annotations</artifactId>
|
|
|
|
<version>2.2.19</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>5.3.20</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
<version>5.3.20</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
|
<artifactId>spring-integration-core</artifactId>
|
|
|
|
<version>6.4.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- 选择兼容 Java 8 的 Spring Integration 版本 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
|
<artifactId>spring-integration-mqtt</artifactId>
|
|
|
|
<version>5.3.10.RELEASE</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<!-- 显式配置 maven-compiler-plugin -->
|
|
|
|
<!-- <build>-->
|
|
|
|
<!-- <plugins>-->
|
|
|
|
<!-- <plugin>-->
|
|
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
|
|
<!-- <artifactId>maven-compiler-plugin</artifactId>-->
|
|
|
|
<!-- <version>3.8.1</version> <!– 可根据需要调整版本 –>-->
|
|
|
|
<!-- <configuration>-->
|
|
|
|
<!-- <source>1.8</source>-->
|
|
|
|
<!-- <target>1.8</target>-->
|
|
|
|
<!-- </configuration>-->
|
|
|
|
<!-- </plugin>-->
|
|
|
|
<!-- </plugins>-->
|
|
|
|
<!-- </build>-->
|
|
|
|
</project>
|