From 24013d4557253c0809e67caa2bf1878e4978a68f Mon Sep 17 00:00:00 2001 From: fakee Date: Sun, 29 Sep 2024 20:15:45 -0500 Subject: [PATCH] Added a hello world file --- helloWorld/pom.xml | 14 ++++++++++++++ .../com/mycompany/helloworld/HelloWorld.java | 16 ++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 helloWorld/pom.xml create mode 100644 helloWorld/src/main/java/com/mycompany/helloworld/HelloWorld.java 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!"); + } +}