Skip to content

Commit 70aeb7b

Browse files
authored
Merge pull request #1 from githubwyj/develop
Develop
2 parents 237190e + 9063f02 commit 70aeb7b

File tree

6 files changed

+49
-4
lines changed

6 files changed

+49
-4
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/

README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
11
# java-plugins
22

3-
分享一些自己在日常中封装的一些组件、spring-boot-starter、工具包等
3+
分享一些自己在日常中封装的一些组件、spring-boot-starter、工具包等
4+
5+
## 快速开始
6+
7+
### 目录结构
8+
9+
```lua
10+
java-plugins
11+
├── java-plugins-pom -- 公共版本控制
12+
├── spring-boot-tools -- spring boot 常用的一些工具类
13+
└── spring-redisson-queue-starter -- 基于redisson实现的队列组件
14+
```
15+
16+
### 组件介绍
17+
18+
| 组件 | 使用介绍 |
19+
|-------------------------------|------------------------------------------------------------------------------------------------|
20+
| java-plugins-pom | - |
21+
| spring-boot-tools | - |
22+
| spring-redisson-queue-starter | [基于Redisson实现的队列组件](https://www.mnjblog.cn/archives/ji-yu-redissonshi-xian-de-dui-lie-zu-jian) |

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)