BAEL-2590 Added files for jlink tutorial (#6552)
This commit is contained in:
parent
16fdea7267
commit
8005f6b313
|
@ -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!");
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
module jlinkModule {
|
||||||
|
requires java.logging;
|
||||||
|
}
|
Loading…
Reference in New Issue