Skip to content

Commit

Permalink
Fixed issue #8
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHossfeld committed Nov 25, 2017
1 parent 0e118cf commit cbccf2d
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>de.gishmo.gwt</groupId>
<artifactId>sema4g-parent</artifactId>
<version>1.5.2</version>
<version>1.5.3</version>
<packaging>pom</packaging>
<name>SeMa4g parent</name>
<description>Managing asynchronous calls in GWT</description>
Expand Down Expand Up @@ -59,7 +59,7 @@

<properties>
<!-- Convenience property to set the GWT version -->
<gwtVersion>2.8.1</gwtVersion>
<gwtVersion>2.8.2</gwtVersion>

<!-- GWT needs at least java 1.6 -->
<maven.compiler.source>1.7</maven.compiler.source>
Expand Down
2 changes: 1 addition & 1 deletion sema4g-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>sema4g-parent</artifactId>
<groupId>de.gishmo.gwt</groupId>
<version>1.5.2</version>
<version>1.5.3</version>
</parent>

<artifactId>sema4g</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ public void signalFinish() {
* Resets all commands of the execution context
*/
public void reset() {
this.state = State.WAITING;
for (SeMa4gCommand command : this.seMa4gCommands) {
command.reset();
}
Expand Down
8 changes: 4 additions & 4 deletions sema4g-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@

<groupId>de.gishmo.gwt.example</groupId>
<artifactId>sema4g-example</artifactId>
<version>1.5.2</version>
<version>1.5.3</version>
<modelVersion>4.0.0</modelVersion>

<packaging>gwt-app</packaging>

<properties>
<!-- Convenience property to set the GWT version -->
<gwtVersion>2.8.1</gwtVersion>
<gwtVersion>2.8.2</gwtVersion>

<!-- GWT needs at least java 1.6 -->
<maven.compiler.source>1.8</maven.compiler.source>
Expand Down Expand Up @@ -76,12 +76,12 @@
<dependency>
<groupId>de.gishmo.gwt</groupId>
<artifactId>sema4g</artifactId>
<version>1.5.2</version>
<version>1.5.3</version>
</dependency>
<dependency>
<groupId>de.gishmo.gwt</groupId>
<artifactId>sema4g-rpc</artifactId>
<version>1.5.2</version>
<version>1.5.3</version>
</dependency>
<dependency>
<groupId>com.squareup</groupId>
Expand Down
2 changes: 1 addition & 1 deletion sema4g-requestbuilder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>sema4g-parent</artifactId>
<groupId>de.gishmo.gwt</groupId>
<version>1.5.2</version>
<version>1.5.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion sema4g-resty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>sema4g-parent</artifactId>
<groupId>de.gishmo.gwt</groupId>
<version>1.5.2</version>
<version>1.5.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion sema4g-rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>sema4g-parent</artifactId>
<groupId>de.gishmo.gwt</groupId>
<version>1.5.2</version>
<version>1.5.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit cbccf2d

Please # to comment.