Skip to content

Commit 2dd429f

Browse files
Latest QA
1 parent 296aebc commit 2dd429f

File tree

9 files changed

+8
-69
lines changed

9 files changed

+8
-69
lines changed

.circleci/config.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
Task 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

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
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>
@@ -38,8 +38,8 @@
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>
@@ -105,7 +105,7 @@
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>

taskmaster-cache-ehcache/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
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>

taskmaster-cache-helper/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
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>

taskmaster-core/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
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>

taskmaster-core/src/main/java/com/github/bordertech/taskmaster/impl/TaskFutureResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

taskmaster-service-helper/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
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>

taskmaster-servlet-tools/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
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>

0 commit comments

Comments
 (0)