43 lines
1.5 KiB
XML
43 lines
1.5 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>org.dromara.mica-mqtt</groupId>
|
||
|
|
<artifactId>starter</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</parent>
|
||
|
|
<artifactId>mica-mqtt-client-solon-plugin</artifactId>
|
||
|
|
<name>${project.artifactId}</name>
|
||
|
|
<url>https://mica-mqtt.dreamlu.net/guide/solon/client.html</url>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.dromara.mica-mqtt</groupId>
|
||
|
|
<artifactId>mica-mqtt-client</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.noear</groupId>
|
||
|
|
<artifactId>solon</artifactId>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.noear</groupId>
|
||
|
|
<artifactId>solon-web</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.noear</groupId>
|
||
|
|
<artifactId>solon-logging-simple</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|