Skip to content

Commit c7d53b4

Browse files
committed
release branch 0.0.2
1 parent d0e6a12 commit c7d53b4

File tree

9 files changed

+18
-12
lines changed

9 files changed

+18
-12
lines changed

async-api/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>async</artifactId>
77
<groupId>com.github.houbb</groupId>
8-
<version>0.0.2-SNAPSHOT</version>
8+
<version>0.0.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

async-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>async</artifactId>
77
<groupId>com.github.houbb</groupId>
8-
<version>0.0.2-SNAPSHOT</version>
8+
<version>0.0.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

async-core/src/main/java/com/github/houbb/async/core/exception/AsyncRuntimeException.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* 异步运行时异常
55
* @author binbin.hou
6-
* @date 2019/3/8
6+
* date 2019/3/8
77
* @since 0.0.2
88
*/
99
public class AsyncRuntimeException extends RuntimeException{

async-core/src/main/java/com/github/houbb/async/core/executor/AsyncExecutor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* 异步执行器
1313
* @author binbin.hou
14-
* @date 2019/3/8
14+
* date 2019/3/8
1515
* @since 0.0.2
1616
*/
1717
public class AsyncExecutor extends ThreadPoolExecutor implements IAsyncExecutor {

async-core/src/main/java/com/github/houbb/async/core/model/async/AsyncResult.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* 异步执行结果
1717
* @author binbin.hou
18-
* @date 2019/3/7
18+
* date 2019/3/7
1919
* @since 0.0.1
2020
*/
2121
public class AsyncResult<T> extends AbstractAsyncResult<T> {

async-core/src/main/java/com/github/houbb/async/core/proxy/cglib/CglibProxy.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* CGLIB 代理类
1717
* @author binbin.hou
18-
* @date 2019/3/7
18+
* date 2019/3/7
1919
* @since 0.0.2
2020
*/
2121
public class CglibProxy implements MethodInterceptor, IAsyncProxy {

async-test/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>async</artifactId>
77
<groupId>com.github.houbb</groupId>
8-
<version>0.0.2-SNAPSHOT</version>
8+
<version>0.0.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

+9-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>com.github.houbb</groupId>
88
<artifactId>async</artifactId>
99
<packaging>pom</packaging>
10-
<version>0.0.2-SNAPSHOT</version>
10+
<version>0.0.2</version>
1111
<modules>
1212
<module>async-api</module>
1313
<module>async-core</module>
@@ -24,7 +24,7 @@
2424
<plugin.surefire.ignore-failure>false</plugin.surefire.ignore-failure>
2525

2626
<plugin.maven-source-plugin.version>2.2.1</plugin.maven-source-plugin.version>
27-
<plugin.maven-javadoc-plugin.version>2.9.1</plugin.maven-javadoc-plugin.version>
27+
<plugin.maven-javadoc-plugin.version>2.10.4</plugin.maven-javadoc-plugin.version>
2828
<plugin.maven-gpg-plugin.version>1.5</plugin.maven-gpg-plugin.version>
2929

3030
<plugin.coveralls.version>4.3.0</plugin.coveralls.version>
@@ -198,13 +198,19 @@
198198
<version>${plugin.maven-javadoc-plugin.version}</version>
199199
<executions>
200200
<execution>
201-
<phase>package</phase>
201+
<id>attach-javadocs</id>
202202
<goals>
203203
<goal>jar</goal>
204204
</goals>
205205
</execution>
206206
</executions>
207207
<configuration>
208+
<encoding>UTF-8</encoding>
209+
<aggregate>true</aggregate>
210+
<charset>UTF-8</charset>
211+
<docencoding>UTF-8</docencoding>
212+
<aggregate>true</aggregate>
213+
<additionalparam>-Xdoclint:none</additionalparam>
208214
<tags>
209215
<tag>
210216
<name>date</name>

release.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
echo "============================= RELEASE START..."
33

44
## 版本号信息(需要手动指定)
5-
oldVersion="0.0.1"
6-
newVersion="0.0.2"
5+
oldVersion="0.0.2"
6+
newVersion="0.0.3"
77
projectName="async"
88

99
# release 项目版本

0 commit comments

Comments
 (0)