BAEL-2590 Added files for jlink tutorial (#6552)

This commit is contained in:
Urvy Agrawal 2019-03-18 20:54:17 +05:30 committed by maibin
parent 16fdea7267
commit 8005f6b313
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package com.baeldung.jlink;
import java.util.logging.Logger;
public class HelloWorld {
private static final Logger LOG = Logger.getLogger(HelloWorld.class.getName());
public static void main(String[] args) {
LOG.info("Hello World!");
}
}

View File

@ -0,0 +1,3 @@
module jlinkModule {
requires java.logging;
}