X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=README.md;h=2a62f1c1eb6531b151b60b6aec531883b5e10593;hb=4ac6237dc39be3c76def4f5c18f79c15591e3c0b;hp=a17515bbcbc3711882c9ffe7651c703b96c66afd;hpb=15c86fc23ad91f9a9bd716e0ab0b116c6f569328;p=fanfix.git diff --git a/README.md b/README.md index a17515b..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(); } } ```