50 lines
1.7 KiB
XML
50 lines
1.7 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.muyu</groupId>
|
|
<artifactId>cloud-modules-enterprise</artifactId>
|
|
<version>3.6.3</version>
|
|
</parent>
|
|
|
|
<artifactId>cloud-modules-enterprise-common</artifactId>
|
|
|
|
<description>
|
|
cloud-modules-enterprise-common企业业务平台服务
|
|
</description>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!-- 公共依赖 -->
|
|
<dependency>
|
|
<groupId>com.muyu</groupId>
|
|
<artifactId>cloud-common-core</artifactId>
|
|
</dependency>
|
|
<!--swagger3maven依赖-->
|
|
<dependency>
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
<artifactId>swagger-annotations-jakarta</artifactId>
|
|
</dependency>
|
|
<!--mqttv3依赖-->
|
|
<dependency>
|
|
<groupId>org.eclipse.paho</groupId>
|
|
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
|
|
<version>1.2.2</version>
|
|
</dependency>
|
|
<!--mqtt依赖-->
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-mqtt</artifactId>
|
|
<version>6.2.5</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|