X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=README.md;h=2a62f1c1eb6531b151b60b6aec531883b5e10593;hb=4ac6237dc39be3c76def4f5c18f79c15591e3c0b;hp=0eb51b4eed92636515b5951fe8631c5ae162b692;hpb=813776549e4265cda8c71b456c1d3789ca4288f8;p=nikiroo-utils.git diff --git a/README.md b/README.md index 0eb51b4..2a62f1c 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,20 @@ This project is licensed under the MIT License. See the file LICENSE for the full license text. +Maven +----- + +Jexer is available on Maven Central: + +```xml + + com.gitlab.klamonte + jexer + 0.3.0 + +``` + + Acknowledgements ---------------- @@ -79,13 +93,9 @@ class MyApplication extends TApplication { new MyWindow(this); } - public static void main(String [] args) { - try { - MyApplication app = new MyApplication(); - (new Thread(app)).start(); - } catch (Throwable t) { - t.printStackTrace(); - } + public static void main(String [] args) throws Exception { + MyApplication app = new MyApplication(); + (new Thread(app)).start(); } } ``` @@ -154,9 +164,9 @@ follows: * 'java -cp jexer.jar jexer.demos.Demo5' . This demonstrates two demo applications using different fonts in the same Swing frame. - * 'java -cp jexer.jar jexer.demos.Demo6' . This demonstrates one - application performing I/O to two screens: an xterm screen and a - Swing screen. + * 'java -cp jexer.jar jexer.demos.Demo6' . This demonstrates two + applications performing I/O across three screens: an xterm screen + and Swing screen, monitored from a third Swing screen.