Skip to content

Commit 9d2d886

Browse files
committed
ReadMe待完善
1 parent 3a6ea35 commit 9d2d886

3 files changed

Lines changed: 16 additions & 13 deletions

File tree

Future.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# Future
22

3+
1. 完善教程
4+
2. 准备推广

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.drtrang/copiers/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.drtrang/copiers)
66
[![License](http://img.shields.io/badge/license-apache%202-brightgreen.svg)](https://github.com/drtrang/Copiers/blob/master/LICENSE)
77

8-
9-
## 1. 概览
10-
Copiers 是一个 Bean Copy 的解决方案,是基于不同底层实现的再次封装。
8+
Copiers 是一个优雅的 Bean 拷贝解决方案,是基于不同底层实现的再次封装。
119
Copiers 隐藏了底层实现,仅暴露统一的 Api 来完成 Copy 过程,用户可随时通过工厂方法切换底层的拷贝方式。
1210

1311
## 2. 底层实现
@@ -60,3 +58,5 @@ Copiers.createMapper(User.class, UserEntity.class).skip("name", "sex").register(
6058
//强制拷贝值为null的字段,默认不拷贝
6159
Copiers.createMapper(User.class, UserEntity.class).skip("name").isNull(true).register();
6260
```
61+
62+
## About Me

pom.xml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,17 @@
3333
<tag>HEAD</tag>
3434
</scm>
3535

36+
<distributionManagement>
37+
<snapshotRepository>
38+
<id>oss</id>
39+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
40+
</snapshotRepository>
41+
<repository>
42+
<id>oss</id>
43+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
44+
</repository>
45+
</distributionManagement>
46+
3647
<properties>
3748
<!-- 工程参数 -->
3849
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -215,16 +226,6 @@
215226
</plugin>
216227
</plugins>
217228
</build>
218-
<distributionManagement>
219-
<snapshotRepository>
220-
<id>oss</id>
221-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
222-
</snapshotRepository>
223-
<repository>
224-
<id>oss</id>
225-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
226-
</repository>
227-
</distributionManagement>
228229
</profile>
229230
</profiles>
230231

0 commit comments

Comments
 (0)