Merge pull request #3800 from mstruk/KEYCLOAK-4324

KEYCLOAK-4324 Upgrade and unify Aesh version to 0.66.12
This commit is contained in:
Stian Thorgersen 2017-01-27 09:23:29 +01:00 committed by GitHub
commit 3a366dd0a6
3 changed files with 2 additions and 13 deletions

View file

@ -30,16 +30,6 @@
<artifactId>keycloak-client-cli-parent</artifactId>
<packaging>pom</packaging>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.aesh</groupId>
<artifactId>aesh</artifactId>
<version>0.66.10</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>client-registration-cli</module>
<module>admin-cli</module>

View file

@ -47,7 +47,7 @@
<jboss.as.version>7.2.0.Final</jboss.as.version>
<wildfly.version>10.0.0.Final</wildfly.version>
<aesh.version>0.66.4</aesh.version>
<aesh.version>0.66.12</aesh.version>
<apache.httpcomponents.version>4.5</apache.httpcomponents.version>
<apache.httpcomponents.httpcore.version>4.4.1</apache.httpcomponents.httpcore.version>
<apache.mime4j.version>0.6</apache.mime4j.version>

View file

@ -40,7 +40,6 @@ import java.io.Console;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.LinkedList;
@ -276,7 +275,7 @@ public class AddUser {
private boolean help;
@Override
public CommandResult execute(CommandInvocation commandInvocation) throws IOException, InterruptedException {
public CommandResult execute(CommandInvocation commandInvocation) throws InterruptedException {
return CommandResult.SUCCESS;
}