diff --git a/clonedRepository/pom.xml b/clonedRepository/pom.xml new file mode 100644 index 00000000..f157e6df --- /dev/null +++ b/clonedRepository/pom.xml @@ -0,0 +1,13 @@ + + + 4.0.0 + com.mycompany + clonedRepository + 1.0-SNAPSHOT + jar + + UTF-8 + 23 + com.mycompany.clonedrepository.ClonedRepository + + \ No newline at end of file diff --git a/clonedRepository/src/main/java/com/mycompany/clonedrepository/ClonedRepository.java b/clonedRepository/src/main/java/com/mycompany/clonedrepository/ClonedRepository.java new file mode 100644 index 00000000..b4d37611 --- /dev/null +++ b/clonedRepository/src/main/java/com/mycompany/clonedrepository/ClonedRepository.java @@ -0,0 +1,16 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + */ + +package com.mycompany.clonedrepository; + +/** + * + * @author luked + */ +public class ClonedRepository { + + public static void main(String[] args) { + System.out.println("Hello World! I cloned this repository"); + } +}