Skip to content

Commit 5b4cc9a

Browse files
committed
Merge branch 'hotfix/1.1.1'
2 parents fa60dca + db64b64 commit 5b4cc9a

File tree

51 files changed

+978
-198
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+978
-198
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<artifactId>seqware</artifactId>
8383
<packaging>pom</packaging>
8484
<groupId>com.github.seqware</groupId>
85-
<version>1.1.0</version>
85+
<version>1.1.1</version>
8686

8787
<repositories>
8888
<repository>

seqware-admin-webservice/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>com.github.seqware</groupId>
1616
<artifactId>seqware</artifactId>
17-
<version>1.1.0</version>
17+
<version>1.1.1</version>
1818
<relativePath>../pom.xml</relativePath>
1919
</parent>
2020

seqware-archetypes/seqware-archetype-decider/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<description>SeqWare Java Decider archetype</description>
1010

1111
<parent>
12-
<version>1.1.0</version>
12+
<version>1.1.1</version>
1313
<groupId>com.github.seqware</groupId>
1414
<artifactId>seqware</artifactId>
1515
<relativePath>../../pom.xml</relativePath>

seqware-archetypes/seqware-archetype-decider/src/main/resources/archetype-resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<properties>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
18-
<seqware-version>1.1.0</seqware-version>
18+
<seqware-version>1.1.1</seqware-version>
1919
<workflow-version>1.0</workflow-version>
2020
<workflow-name>${workflow-name}</workflow-name>
2121
</properties>

seqware-archetypes/seqware-archetype-java-workflow/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<description>SeqWare Java workflow archetype</description>
1010

1111
<parent>
12-
<version>1.1.0</version>
12+
<version>1.1.1</version>
1313
<groupId>com.github.seqware</groupId>
1414
<artifactId>seqware</artifactId>
1515
<relativePath>../../pom.xml</relativePath>

seqware-archetypes/seqware-archetype-java-workflow/src/main/resources/archetype-resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<properties>
2020
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2121
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
22-
<seqware-version>1.1.0</seqware-version>
22+
<seqware-version>1.1.1</seqware-version>
2323
<skipITs>true</skipITs>
2424
<workflow-full-name>Workflow_Bundle_${workflow-name}_${workflow-version}_SeqWare_${seqware-version}</workflow-full-name>
2525
<workflow-dir>${project.build.directory}/${workflow-full-name}/Workflow_Bundle_${workflow-name}/${workflow-version}</workflow-dir>

seqware-archetypes/seqware-archetype-module/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<description>SeqWare module archetype</description>
1010

1111
<parent>
12-
<version>1.1.0</version>
12+
<version>1.1.1</version>
1313
<groupId>com.github.seqware</groupId>
1414
<artifactId>seqware</artifactId>
1515
<relativePath>../../pom.xml</relativePath>

seqware-archetypes/seqware-archetype-module/src/main/resources/archetype-resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<properties>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1616
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
17-
<seqware-version>1.1.0</seqware-version>
17+
<seqware-version>1.1.1</seqware-version>
1818
</properties>
1919

2020
<build>

seqware-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<packaging>jar</packaging>
1212

1313
<parent>
14-
<version>1.1.0</version>
14+
<version>1.1.1</version>
1515
<groupId>com.github.seqware</groupId>
1616
<artifactId>seqware</artifactId>
1717
<relativePath>../pom.xml</relativePath>

seqware-common/src/main/java/io/seqware/Engines.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public String toString() {
3636

3737
/**
3838
* Check whether the workflow engine is Oozie-based.
39-
*
39+
*
4040
* @param engine
4141
* @return
4242
*/
@@ -46,7 +46,7 @@ public static boolean isOozie(final String engine) {
4646

4747
/**
4848
* Check whether the workflow engine is whitestar-based.
49-
*
49+
*
5050
* @param engine
5151
* @return
5252
*/
@@ -56,7 +56,7 @@ public static boolean isWhiteStar(final String engine) {
5656

5757
/**
5858
* Check whether the workflow engine supports parallel operation.
59-
*
59+
*
6060
* @param engine
6161
* @return
6262
*/
@@ -66,7 +66,7 @@ public static boolean isWhiteStarParallel(final String engine) {
6666

6767
/**
6868
* Check whether the workflow engine supports cancel.
69-
*
69+
*
7070
* @param engine
7171
* @return
7272
*/
@@ -75,8 +75,8 @@ public static boolean supportsCancel(final String engine) {
7575
}
7676

7777
/**
78-
* Check whether the workflow engine supports retry.
79-
*
78+
* Check whether the workflow engine supports retry. Here we mean asynchronous retry.
79+
*
8080
* @param engine
8181
* @return
8282
*/

0 commit comments

Comments
 (0)