From 399908706fe2742067f7f09b809d31c2d15f42c5 Mon Sep 17 00:00:00 2001 From: 250406 <250406@localhost> Date: Thu, 6 Nov 2025 09:09:54 +0000 Subject: [PATCH] commit inicial --- pom.xml | 13 +++++++++++++ .../com/mycompany/primeiro_git/Primeiro_Git.java | 16 ++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/com/mycompany/primeiro_git/Primeiro_Git.java diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..ec468ba --- /dev/null +++ b/pom.xml @@ -0,0 +1,13 @@ + + + 4.0.0 + com.mycompany + Primeiro_Git + 1.0-SNAPSHOT + jar + + UTF-8 + 24 + com.mycompany.primeiro_git.Primeiro_Git + + \ No newline at end of file diff --git a/src/main/java/com/mycompany/primeiro_git/Primeiro_Git.java b/src/main/java/com/mycompany/primeiro_git/Primeiro_Git.java new file mode 100644 index 0000000..35ea727 --- /dev/null +++ b/src/main/java/com/mycompany/primeiro_git/Primeiro_Git.java @@ -0,0 +1,16 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + */ + +package com.mycompany.primeiro_git; + +/** + * + * @author 250406 + */ +public class Primeiro_Git { + + public static void main(String[] args) { + System.out.println("Hello World!"); + } +}