diff --git a/helloWorld/pom.xml b/helloWorld/pom.xml new file mode 100644 index 0000000..92a8cce --- /dev/null +++ b/helloWorld/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + com.mycompany + helloWorld + 1.0-SNAPSHOT + jar + + UTF-8 + 22 + 22 + com.mycompany.helloworld.HelloWorld + + \ No newline at end of file diff --git a/helloWorld/src/main/java/com/mycompany/helloworld/HelloWorld.java b/helloWorld/src/main/java/com/mycompany/helloworld/HelloWorld.java new file mode 100644 index 0000000..dc0f75d --- /dev/null +++ b/helloWorld/src/main/java/com/mycompany/helloworld/HelloWorld.java @@ -0,0 +1,16 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + */ + +package com.mycompany.helloworld; + +/** + * + * @author fakee + */ +public class HelloWorld { + + public static void main(String[] args) { + System.out.println("Hello World!"); + } +}