Skip to content

Commit 915606a

Browse files
committedOct 14, 2021
doc
1 parent ec1af73 commit 915606a

File tree

4 files changed

+8
-18
lines changed

4 files changed

+8
-18
lines changed
 

‎smqtt-spring-boot-starter/pom.xml

+6-14
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,13 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>io.github.quickmsg</groupId>
7+
<parent>
8+
<artifactId>smqtt</artifactId>
9+
<groupId>io.github.quickmsg</groupId>
10+
<version>1.0.8</version>
11+
</parent>
12+
813
<artifactId>smqtt-spring-boot-starter</artifactId>
9-
<version>1.0.7</version>
10-
<build>
11-
<plugins>
12-
<plugin>
13-
<groupId>org.apache.maven.plugins</groupId>
14-
<artifactId>maven-compiler-plugin</artifactId>
15-
<configuration>
16-
<source>8</source>
17-
<target>8</target>
18-
</configuration>
19-
</plugin>
20-
</plugins>
21-
</build>
2214

2315
<name>smqtt-spring-boot-starter</name>
2416

‎smqtt-spring-boot-starter/src/main/java/io/github/quickmsg/starter/AutoMqttConfiguration.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
/**
1313
* @author luxurong
14-
* @date 2021/9/17 17:22
1514
*/
1615
@Slf4j
1716
@Configuration
@@ -22,7 +21,8 @@ public class AutoMqttConfiguration {
2221
/**
2322
* 配置异常切面
2423
*
25-
* @return
24+
* @param springBootstrapConfig {@link SpringBootstrapConfig}
25+
* @return {@link Bootstrap}
2626
*/
2727
@Bean
2828
public Bootstrap startServer(@Autowired SpringBootstrapConfig springBootstrapConfig) {

‎smqtt-spring-boot-starter/src/main/java/io/github/quickmsg/starter/EnableMqttServer.java

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
/**
99
* @author luxurong
10-
* @date 2021/9/17 17:21
1110
*/
1211
@Target(ElementType.TYPE)
1312
@Retention(RetentionPolicy.RUNTIME)

‎smqtt-spring-boot-starter/src/main/java/io/github/quickmsg/starter/SpringBootstrapConfig.java

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
/**
2121
* @author luxurong
22-
* @date 2021/9/17 17:27
2322
*/
2423

2524
@Configuration

0 commit comments

Comments
 (0)
Please sign in to comment.