Skip to content

Commit 9063f02

Browse files
committed
docs: 添加相关文档说明
1 parent 0356889 commit 9063f02

File tree

5 files changed

+29
-3
lines changed

5 files changed

+29
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ build/
3636
.vscode/
3737

3838
### Mac OS ###
39-
.DS_Store
39+
.DS_Store!/.idea/sonarlint/

java-plugins-pom/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@
3030
<artifactId>redisson-spring-data-27</artifactId>
3131
<version>${redisson.version}</version>
3232
</dependency>
33+
<dependency>
34+
<groupId>cn.mnjblog</groupId>
35+
<artifactId>spring-boot-tools</artifactId>
36+
<version>${plugins.version}</version>
37+
</dependency>
3338
</dependencies>
3439
</dependencyManagement>
3540
</project>

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
<description>java-plugins 是在日常中封装的一些组件、spring-boot-starter、工具包等</description>
1414
<url>https://github.com/githubwyj/java-plugins</url>
1515
<modules>
16-
<module>spring-redisson-queue-starter</module>
1716
<module>java-plugins-pom</module>
17+
<module>spring-boot-tools</module>
18+
<module>spring-redisson-queue-starter</module>
1819
</modules>
1920

2021
<properties>

spring-boot-tools/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
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">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>cn.mnjblog</groupId>
8+
<artifactId>java-plugins</artifactId>
9+
<version>1.0.0-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>spring-boot-tools</artifactId>
13+
<description>spring boot 常用的一些工具类</description>
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>
19+
20+
</project>

spring-redisson-queue-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111

1212
<artifactId>spring-redisson-queue-starter</artifactId>
13-
13+
<description>基于redisson实现的(延时)队列组件</description>
1414
<properties>
1515
<maven.compiler.source>8</maven.compiler.source>
1616
<maven.compiler.target>8</maven.compiler.target>

0 commit comments

Comments
 (0)