Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
Merge pull request #66 from manywho/develop
Browse files Browse the repository at this point in the history
Mergin 2.0.1 into master
  • Loading branch information
josecollazzi authored May 1, 2020
2 parents c3f5d1f + ebfb8c2 commit b6382ba
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 21 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.manywho.sdk</groupId>
<artifactId>project</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
<packaging>pom</packaging>

<modules>
Expand Down
2 changes: 1 addition & 1 deletion sdk-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>project</artifactId>
<groupId>com.manywho.sdk</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import com.google.common.base.MoreObjects;
import com.google.common.collect.Lists;
import com.manywho.sdk.api.run.EngineValue;
import com.manywho.sdk.api.run.FlowMode;
import com.manywho.sdk.api.run.elements.map.OutcomeResponse;

import java.util.ArrayList;
Expand All @@ -17,7 +16,6 @@ public class ServiceRequest extends AbstractRequest {
private String uri;
private List<EngineValue> inputs = Lists.newArrayList();
private List<OutcomeResponse> outcomes = Lists.newArrayList();
private FlowMode executionMode;

public String getJoinPlayerUri() {
return joinPlayerUri;
Expand Down Expand Up @@ -62,12 +60,4 @@ public List<OutcomeResponse> getOutcomes() {
public void setOutcomes(List<OutcomeResponse> outcomes) {
this.outcomes = MoreObjects.firstNonNull(outcomes, new ArrayList<OutcomeResponse>());
}

public FlowMode getExecutionMode() {
return executionMode;
}

public void setExecutionMode(FlowMode executionMode) {
this.executionMode = executionMode;
}
}
2 changes: 1 addition & 1 deletion sdk-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>project</artifactId>
<groupId>com.manywho.sdk</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion sdk-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>project</artifactId>
<groupId>com.manywho.sdk</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion sdk-server-lambda-testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>project</artifactId>
<groupId>com.manywho.sdk</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>

<artifactId>sdk-server-lambda-testing</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion sdk-server-lambda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>project</artifactId>
<groupId>com.manywho.sdk</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion sdk-server-resteasy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>project</artifactId>
<groupId>com.manywho.sdk</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion sdk-server-servlet3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>project</artifactId>
<groupId>com.manywho.sdk</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion sdk-server-undertow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>project</artifactId>
<groupId>com.manywho.sdk</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion sdk-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>project</artifactId>
<groupId>com.manywho.sdk</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion sdk-services/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>project</artifactId>
<groupId>com.manywho.sdk</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down

0 comments on commit b6382ba

Please sign in to comment.