File tree 9 files changed +18
-12
lines changed
src/main/java/com/github/houbb/async/core
9 files changed +18
-12
lines changed Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >async</artifactId >
7
7
<groupId >com.github.houbb</groupId >
8
- <version >0.0.2-SNAPSHOT </version >
8
+ <version >0.0.2</version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >async</artifactId >
7
7
<groupId >com.github.houbb</groupId >
8
- <version >0.0.2-SNAPSHOT </version >
8
+ <version >0.0.2</version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
Original file line number Diff line number Diff line change 3
3
/**
4
4
* 异步运行时异常
5
5
* @author binbin.hou
6
- * @ date 2019/3/8
6
+ * date 2019/3/8
7
7
* @since 0.0.2
8
8
*/
9
9
public class AsyncRuntimeException extends RuntimeException {
Original file line number Diff line number Diff line change 11
11
/**
12
12
* 异步执行器
13
13
* @author binbin.hou
14
- * @ date 2019/3/8
14
+ * date 2019/3/8
15
15
* @since 0.0.2
16
16
*/
17
17
public class AsyncExecutor extends ThreadPoolExecutor implements IAsyncExecutor {
Original file line number Diff line number Diff line change 15
15
/**
16
16
* 异步执行结果
17
17
* @author binbin.hou
18
- * @ date 2019/3/7
18
+ * date 2019/3/7
19
19
* @since 0.0.1
20
20
*/
21
21
public class AsyncResult <T > extends AbstractAsyncResult <T > {
Original file line number Diff line number Diff line change 15
15
/**
16
16
* CGLIB 代理类
17
17
* @author binbin.hou
18
- * @ date 2019/3/7
18
+ * date 2019/3/7
19
19
* @since 0.0.2
20
20
*/
21
21
public class CglibProxy implements MethodInterceptor , IAsyncProxy {
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >async</artifactId >
7
7
<groupId >com.github.houbb</groupId >
8
- <version >0.0.2-SNAPSHOT </version >
8
+ <version >0.0.2</version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
Original file line number Diff line number Diff line change 7
7
<groupId >com.github.houbb</groupId >
8
8
<artifactId >async</artifactId >
9
9
<packaging >pom</packaging >
10
- <version >0.0.2-SNAPSHOT </version >
10
+ <version >0.0.2</version >
11
11
<modules >
12
12
<module >async-api</module >
13
13
<module >async-core</module >
24
24
<plugin .surefire.ignore-failure>false</plugin .surefire.ignore-failure>
25
25
26
26
<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>
28
28
<plugin .maven-gpg-plugin.version>1.5</plugin .maven-gpg-plugin.version>
29
29
30
30
<plugin .coveralls.version>4.3.0</plugin .coveralls.version>
198
198
<version >${plugin.maven-javadoc-plugin.version} </version >
199
199
<executions >
200
200
<execution >
201
- <phase >package</ phase >
201
+ <id >attach-javadocs</ id >
202
202
<goals >
203
203
<goal >jar</goal >
204
204
</goals >
205
205
</execution >
206
206
</executions >
207
207
<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 >
208
214
<tags >
209
215
<tag >
210
216
<name >date</name >
Original file line number Diff line number Diff line change 2
2
echo " ============================= RELEASE START..."
3
3
4
4
# # 版本号信息(需要手动指定)
5
- oldVersion=" 0.0.1 "
6
- newVersion=" 0.0.2 "
5
+ oldVersion=" 0.0.2 "
6
+ newVersion=" 0.0.3 "
7
7
projectName=" async"
8
8
9
9
# release 项目版本
You can’t perform that action at this time.
0 commit comments