Fix maven versions

This commit is contained in:
Eric Bottard
2017-05-18 21:08:23 +02:00
parent 452c7dcb9f
commit f15fb0ba9d
6 changed files with 7 additions and 6 deletions

View File

@@ -4,7 +4,7 @@
<groupId>org.springframework.shell</groupId>
<artifactId>spring-shell2-parent</artifactId>
<version>2.0.0-BUILD.SNAPSHOT</version>
<version>2.0.0.BUILD-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>

View File

@@ -8,7 +8,7 @@
<parent>
<groupId>org.springframework.shell</groupId>
<artifactId>spring-shell2-parent</artifactId>
<version>2.0.0-BUILD.SNAPSHOT</version>
<version>2.0.0.BUILD-SNAPSHOT</version>
</parent>
<description>Core API and classes for Spring Shell 2</description>

View File

@@ -32,11 +32,12 @@ public class IterableResultHandler implements ResultHandler<Iterable> {
private ResultHandler delegate;
// Setter injection to avoid circular dependency at creation time
public void setDelegate(ResultHandler delegate) {
void setDelegate(ResultHandler delegate) {
this.delegate = delegate;
}
@Override
@SuppressWarnings("unchecked")
public void handleResult(Iterable result) {
for (Object o : result) {
delegate.handleResult(o);

View File

@@ -8,7 +8,7 @@
<parent>
<groupId>org.springframework.shell</groupId>
<artifactId>spring-shell2-parent</artifactId>
<version>2.0.0-BUILD.SNAPSHOT</version>
<version>2.0.0.BUILD-SNAPSHOT</version>
</parent>
<description>Adapter classes to allow JCommander type annotations and parsing via Spring Shell 2</description>

View File

@@ -8,7 +8,7 @@
<parent>
<groupId>org.springframework.shell</groupId>
<artifactId>spring-shell2-parent</artifactId>
<version>2.0.0-BUILD.SNAPSHOT</version>
<version>2.0.0.BUILD-SNAPSHOT</version>
</parent>
<description>Examples of using Spring Shell 2</description>

View File

@@ -8,7 +8,7 @@
<parent>
<groupId>org.springframework.shell</groupId>
<artifactId>spring-shell2-parent</artifactId>
<version>2.0.0-BUILD.SNAPSHOT</version>
<version>2.0.0.BUILD-SNAPSHOT</version>
</parent>
<description>Adapter classes to enable Shell 1 type annotations via Spring Shell 2</description>