add some dockerfiles for testing against jdk9

This commit is contained in:
Roel Spilker
2017-10-26 02:17:46 +02:00
parent 93e06e10e1
commit b833522b2c
8 changed files with 142 additions and 0 deletions
@@ -0,0 +1,13 @@
@lombok.Data
public class HelloWorld {
private final int answer;
public static void main(String... args) {
System.out.println(new HelloWorld(42).getAnswer());
}
@FunctionalInterface
interface Foo {
String name();
}
}