commit 0e031849a26542353cc818f2f3c170ae06d3be10 Author: Tomasz Półgrabia Date: Mon Oct 3 21:44:45 2022 +0200 Initial version of ant project a.k.a xml programming. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5997cc9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +lib/ +target/ diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..28ba9f5 --- /dev/null +++ b/build.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ivy.xml b/ivy.xml new file mode 100644 index 0000000..405ada4 --- /dev/null +++ b/ivy.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/java/Program.java b/src/main/java/Program.java new file mode 100644 index 0000000..970d3e5 --- /dev/null +++ b/src/main/java/Program.java @@ -0,0 +1,5 @@ +public class Program { + public static void main(String[] args) { + System.out.println("Hello World!!!"); + } +} diff --git a/src/main/resources/META-INF/MANIFEST.MF b/src/main/resources/META-INF/MANIFEST.MF new file mode 100644 index 0000000..278e473 --- /dev/null +++ b/src/main/resources/META-INF/MANIFEST.MF @@ -0,0 +1 @@ +Main-Class: Program diff --git a/src/main/resources/web.xml b/src/main/resources/web.xml new file mode 100644 index 0000000..c8f3d22 --- /dev/null +++ b/src/main/resources/web.xml @@ -0,0 +1,3 @@ + + +