Update gclc-swt and -socket for gclc-1.2.3
This commit is contained in:
parent
c151107207
commit
763b7361ec
@ -87,7 +87,7 @@ of Emmanuel Bigeon. -->
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>fr.bigeon</groupId>
|
<groupId>fr.bigeon</groupId>
|
||||||
<artifactId>gclc</artifactId>
|
<artifactId>gclc</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>fr.bigeon</groupId>
|
<groupId>fr.bigeon</groupId>
|
||||||
|
@ -72,7 +72,8 @@ public class ConsoleTestApplication extends ConsoleApplication {
|
|||||||
try {
|
try {
|
||||||
manager.println("Test command ran fine");
|
manager.println("Test command ran fine");
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw new CommandRunException("manager closed", e);
|
throw new CommandRunException("manager closed", e,
|
||||||
|
this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -89,7 +90,8 @@ public class ConsoleTestApplication extends ConsoleApplication {
|
|||||||
Thread.sleep(2000);
|
Thread.sleep(2000);
|
||||||
manager.println("Test command ran fine");
|
manager.println("Test command ran fine");
|
||||||
} catch (IOException | InterruptedException e) {
|
} catch (IOException | InterruptedException e) {
|
||||||
throw new CommandRunException("manager closed", e);
|
throw new CommandRunException("manager closed", e,
|
||||||
|
this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>fr.bigeon</groupId>
|
<groupId>fr.bigeon</groupId>
|
||||||
<artifactId>gclc</artifactId>
|
<artifactId>gclc</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>fr.bigeon</groupId>
|
<groupId>fr.bigeon</groupId>
|
||||||
|
@ -98,7 +98,7 @@ public class SWTConsoleShellTest {
|
|||||||
try {
|
try {
|
||||||
appl.getManager().prompt("Test");
|
appl.getManager().prompt("Test");
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw new CommandRunException("No input", e);
|
throw new CommandRunException("No input", e, this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user