File tree Expand file tree Collapse file tree 9 files changed +8
-69
lines changed
src/main/java/com/github/bordertech/taskmaster/impl
taskmaster-service-helper Expand file tree Collapse file tree 9 files changed +8
-69
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22Task Master helps run ASYNC tasks.
33
44## Status
5- [ ![ CircleCI ] ( https://circleci .com/gh/ BorderTech/java-taskmaster.svg?style=svg )] ( https://circleci .com/gh /BorderTech/java-taskmaster )
5+ [ ![ Build Status ] ( https://travis-ci .com/BorderTech/java-taskmaster.svg?branch=master )] ( https://travis-ci .com/BorderTech/java-taskmaster )
66[ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Grade/83bcfdba5e34433894e8b958bdb958a5 )] ( https://www.codacy.com/app/BorderTech/java-taskmaster?utm_source=github.com& ; utm_medium=referral& ; utm_content=BorderTech/java-taskmaster& ; utm_campaign=Badge_Grade )
7+ [ ![ Javadocs] ( https://www.javadoc.io/badge/com.github.bordertech.taskmaster/taskmaster.svg )] ( https://www.javadoc.io/doc/com.github.bordertech.taskmaster/taskmaster )
8+ [ ![ Maven Central] ( https://img.shields.io/maven-central/v/com.github.bordertech.taskmaster/taskmaster.svg?label=Maven%20Central )] ( https://search.maven.org/search?q=g:%22com.github.bordertech.taskmaster%22%20AND%20a:%22taskmaster%22 )
79
810## What is TaskMaster
911
Original file line number Diff line number Diff line change 1010 <parent >
1111 <groupId >com.github.bordertech.common</groupId >
1212 <artifactId >qa-parent</artifactId >
13- <version >1.0.4 </version >
13+ <version >1.0.10 </version >
1414 </parent >
1515
1616 <packaging >pom</packaging >
3838 </issueManagement >
3939
4040 <ciManagement >
41- <system >CircleCI </system >
42- <url >https://circleci .com/gh/bordertech/ java-taskmaster/ </url >
41+ <system >Travis CI </system >
42+ <url >https://travis-ci .com/BorderTech/ java-taskmaster</url >
4343 </ciManagement >
4444
4545 <dependencyManagement >
105105 <dependency >
106106 <groupId >org.apache.commons</groupId >
107107 <artifactId >commons-lang3</artifactId >
108- <version >3.8</version >
108+ <version >3.8.1 </version >
109109 </dependency >
110110
111111 </dependencies >
Original file line number Diff line number Diff line change 1616
1717 <packaging >jar</packaging >
1818
19- <properties >
20- <bt .qa.skip>false</bt .qa.skip>
21- </properties >
22-
2319 <description >
2420 Task Master provides a ehcache helper.
2521 </description >
Original file line number Diff line number Diff line change 1616
1717 <packaging >jar</packaging >
1818
19- <properties >
20- <bt .qa.skip>false</bt .qa.skip>
21- </properties >
22-
2319 <description >
2420 Task Master provides a Cache Helper API.
2521 </description >
Original file line number Diff line number Diff line change 1616
1717 <packaging >jar</packaging >
1818
19- <properties >
20- <bt .qa.skip>false</bt .qa.skip>
21- </properties >
22-
2319 <description >
2420 Task Master allows a Runnable task to be submitted for execution and returns a Future representing that task.
2521 </description >
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ public boolean isDone() {
4343 @ Override
4444 public T get () throws InterruptedException , ExecutionException {
4545 if (result instanceof TaskMasterException ) {
46- Exception excp = (TaskMasterException ) result ;
46+ TaskMasterException excp = (TaskMasterException ) result ;
4747 throw new ExecutionException ("Error processing future. " + excp .getMessage (), excp );
4848 }
4949 return result ;
Original file line number Diff line number Diff line change 1616
1717 <packaging >jar</packaging >
1818
19- <properties >
20- <bt .qa.skip>false</bt .qa.skip>
21- </properties >
22-
2319 <description >
2420 Task Master provides a invoke service helper API.
2521 </description >
Original file line number Diff line number Diff line change 1616
1717 <packaging >jar</packaging >
1818
19- <properties >
20- <bt .qa.skip>false</bt .qa.skip>
21- </properties >
22-
2319 <description >
2420 Task Master provides Servlet Tools such as filters and listeners.
2521 </description >
You can’t perform that action at this time.
0 commit comments