正在显示
1 个修改的文件
包含
22 行增加
和
6 行删除
| @@ -2,20 +2,36 @@ | @@ -2,20 +2,36 @@ | ||
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> | ||
| 5 | <parent> | 6 | <parent> |
| 6 | - <artifactId>lh-jar</artifactId> | ||
| 7 | <groupId>com.zhonglai.luhui</groupId> | 7 | <groupId>com.zhonglai.luhui</groupId> |
| 8 | + <artifactId>lh-modules</artifactId> | ||
| 8 | <version>1.0-SNAPSHOT</version> | 9 | <version>1.0-SNAPSHOT</version> |
| 9 | </parent> | 10 | </parent> |
| 10 | - <modelVersion>4.0.0</modelVersion> | ||
| 11 | 11 | ||
| 12 | - <artifactId>lh-central-control</artifactId> | 12 | + <artifactId>lh-smart-feeder-pureness</artifactId> |
| 13 | + | ||
| 14 | + <properties> | ||
| 15 | + <maven.compiler.source>8</maven.compiler.source> | ||
| 16 | + <maven.compiler.target>8</maven.compiler.target> | ||
| 17 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| 18 | + </properties> | ||
| 13 | 19 | ||
| 14 | <dependencies> | 20 | <dependencies> |
| 21 | + <!-- mqtt --> | ||
| 15 | <dependency> | 22 | <dependency> |
| 16 | - <groupId>com.zhonglai.luhui</groupId> | ||
| 17 | - <artifactId>lh-jar-device-service</artifactId> | 23 | + <groupId>org.eclipse.paho</groupId> |
| 24 | + <artifactId>org.eclipse.paho.client.mqttv3</artifactId> | ||
| 25 | + </dependency> | ||
| 26 | + <dependency> | ||
| 27 | + <groupId>cn.hutool</groupId> | ||
| 28 | + <artifactId>hutool-all</artifactId> | ||
| 18 | </dependency> | 29 | </dependency> |
| 19 | - </dependencies> | ||
| 20 | 30 | ||
| 31 | + <dependency> | ||
| 32 | + <groupId>org.slf4j</groupId> | ||
| 33 | + <artifactId>slf4j-simple</artifactId> | ||
| 34 | + </dependency> | ||
| 35 | + | ||
| 36 | + </dependencies> | ||
| 21 | </project> | 37 | </project> |
-
请 注册 或 登录 后发表评论