Skip to content

Commit

Permalink
prepare 4.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Sep 7, 2017
1 parent ef80833 commit 47cee12
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion imixs-workflow-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<artifactId>imixs-workflow</artifactId>
<groupId>org.imixs.workflow</groupId>
<version>4.1.6-SNAPSHOT</version>
<version>4.1.5-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>imixs-workflow-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.imixs.workflow.xml;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
Expand Down Expand Up @@ -140,8 +141,19 @@ public void testWrite() {


try {
FileInputStream fis = null;

fis = new FileInputStream(file);


// ItemCollection resultItemCollection = XMLItemCollectionAdapter
// .readItemCollectionFromInputStream(getClass().getResourceAsStream("/write-example.xml"));

ItemCollection resultItemCollection = XMLItemCollectionAdapter
.readItemCollectionFromInputStream(getClass().getResourceAsStream("/write-example.xml"));
.readItemCollectionFromInputStream(fis);



System.out.println("Phase 1");

Assert.assertNotNull(resultItemCollection);
Expand Down
2 changes: 1 addition & 1 deletion imixs-workflow-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<artifactId>imixs-workflow</artifactId>
<groupId>org.imixs.workflow</groupId>
<version>4.1.6-SNAPSHOT</version>
<version>4.1.5-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>imixs-workflow-engine</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion imixs-workflow-faces/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<artifactId>imixs-workflow</artifactId>
<groupId>org.imixs.workflow</groupId>
<version>4.1.6-SNAPSHOT</version>
<version>4.1.5-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>imixs-workflow-faces</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion imixs-workflow-jax-rs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<artifactId>imixs-workflow</artifactId>
<groupId>org.imixs.workflow</groupId>
<version>4.1.6-SNAPSHOT</version>
<version>4.1.5-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>imixs-workflow-jax-rs</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<artifactId>imixs-workflow</artifactId>
<name>Imixs Workflow</name>
<packaging>pom</packaging>
<version>4.1.6-SNAPSHOT</version>
<version>4.1.5-SNAPSHOT</version>

<modules>
<module>imixs-workflow-core</module>
Expand Down

0 comments on commit 47cee12

Please sign in to comment.