Skip to content

Commit

Permalink
✨ 调整 solon-plugin test 可运行
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunMengLu committed Jul 30, 2024
1 parent 00ee7c8 commit b9c894c
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 21 deletions.
11 changes: 5 additions & 6 deletions starter/mica-mqtt-client-solon-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,13 @@
<artifactId>mica-mqtt-client</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<scope>provided</scope>
<groupId>org.noear</groupId>
<artifactId>solon-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
<groupId>org.noear</groupId>
<artifactId>solon.logging.simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.gitee.peigenlpy.mica.client;
package net.dreamlu.iot.mqtt.noear;

import net.dreamlu.iot.mqtt.client.noear.MqttClientTemplate;
import org.noear.solon.Solon;
Expand Down
24 changes: 12 additions & 12 deletions starter/mica-mqtt-server-solon-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,27 +25,27 @@
<groupId>net.dreamlu</groupId>
<artifactId>mica-net-http</artifactId>
</dependency>
<!-- 简单的本地定时任务调度 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<scope>provided</scope>
<groupId>org.noear</groupId>
<artifactId>solon-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
<groupId>org.noear</groupId>
<artifactId>solon.scheduling.simple</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>
<!-- 简单的本地定时任务调度 -->
<dependency>
<groupId>org.noear</groupId>
<artifactId>solon.scheduling.simple</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.gitee.peigenlpy.mica.server.test;
package net.dreamlu.iot.mqtt.server.noear.test;

import org.noear.solon.Solon;
import org.noear.solon.scheduling.annotation.EnableScheduling;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.gitee.peigenlpy.mica.server.test.task;
package net.dreamlu.iot.mqtt.server.noear.test.task;

import net.dreamlu.iot.mqtt.server.noear.MqttServerTemplate;
import org.noear.solon.annotation.Component;
Expand Down

0 comments on commit b9c894c

Please sign in to comment.