Skip to content

Commit

Permalink
Updated to use latest snapshot versions (#2)
Browse files Browse the repository at this point in the history
To handle removed HasId class.
Also set version of client and main pom.xml to SNAPSHOT to not override release.
  • Loading branch information
Hilbrand authored Sep 9, 2022
1 parent ee25860 commit 8078e4d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>nl.aerius</groupId>
<artifactId>tetris-parent</artifactId>
<version>1.1.2</version>
<version>1.1.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>AERIUS :: Tetris Parent</name>
<url>https://www.aerius.nl</url>
Expand Down Expand Up @@ -81,10 +81,10 @@

<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<gwt-client-common.version>1.3.0-SNAPSHOT</gwt-client-common.version>
<gwt-client-common.version>1.5.0-SNAPSHOT</gwt-client-common.version>
<gwt-client-common-json.version>1.3.0-SNAPSHOT</gwt-client-common-json.version>

<imaer.version>4.1-SNAPSHOT</imaer.version>
<imaer.version>5.0.1-3-SNAPSHOT</imaer.version>

<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion tetris-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>nl.aerius</groupId>
<artifactId>tetris-parent</artifactId>
<version>1.1.2</version>
<version>1.1.3-SNAPSHOT</version>
</parent>

<artifactId>tetris-client</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
*/
package nl.aerius.wui.easter.domain;

import nl.aerius.wui.util.HasId;
import nl.overheid.aerius.shared.domain.HasId;

public class ReceptorPoint extends Point implements HasId {
private final int id;
private int id;

/**
* Initializes this ReceptorPoint with the given location.
Expand All @@ -34,6 +34,11 @@ public ReceptorPoint(final int id, final double x, final double y) {
this.id = id;
}

@Override
public void setId(int id) {
this.id = id;
}

/**
* Objects are equal if same type and same id or if obj is a point and the super is equal.
*/
Expand Down

0 comments on commit 8078e4d

Please sign in to comment.