diff --git a/first/pom.xml b/first/pom.xml new file mode 100644 index 0000000..2fe16f4 --- /dev/null +++ b/first/pom.xml @@ -0,0 +1,16 @@ + + + 4.0.0 + + com.example + first + 1.0-SNAPSHOT + + + 17 + 17 + + + \ No newline at end of file diff --git a/first/src/main/java/com/example/Main.java b/first/src/main/java/com/example/Main.java new file mode 100644 index 0000000..b47156f --- /dev/null +++ b/first/src/main/java/com/example/Main.java @@ -0,0 +1,7 @@ +package com.example; + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/first/target/classes/com/example/Main.class b/first/target/classes/com/example/Main.class new file mode 100644 index 0000000..54adadc Binary files /dev/null and b/first/target/classes/com/example/Main.class differ