Need to explicitly exit the VM
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 18 Jul 2013 12:49:16 +0200
changeset 2016292ef04c40b
parent 200 ce5210d5b19f
child 202 5a50f193bdff
Need to explicitly exit the VM
ko-archetype/src/main/resources/archetype-resources/src/main/java/Main.java
     1.1 --- a/ko-archetype/src/main/resources/archetype-resources/src/main/java/Main.java	Wed Jul 17 12:34:55 2013 +0200
     1.2 +++ b/ko-archetype/src/main/resources/archetype-resources/src/main/java/Main.java	Thu Jul 18 12:49:16 2013 +0200
     1.3 @@ -12,5 +12,6 @@
     1.4              loadClass(TwitterClient.class).
     1.5              invoke("initialize", args).
     1.6              showAndWait();
     1.7 +        System.exit(0);
     1.8      }
     1.9  }