From f288d0b66d92c95097786766ca3d5faf4ce29c38 Mon Sep 17 00:00:00 2001 From: Flare Microsystems Date: Fri, 8 Nov 2024 17:51:48 -0800 Subject: [PATCH] Using ant build script instead --- bin/test.xml | 27 ++++++++ build.xml | 63 +++++++++++++++++++ test/com/flaremicro/crossjeeves/MainTest.java | 14 +++++ 3 files changed, 104 insertions(+) create mode 100644 bin/test.xml create mode 100644 build.xml create mode 100644 test/com/flaremicro/crossjeeves/MainTest.java diff --git a/bin/test.xml b/bin/test.xml new file mode 100644 index 0000000..6d74a97 --- /dev/null +++ b/bin/test.xml @@ -0,0 +1,27 @@ + + + Variable Contents + + + + + echo this could be a whole batch script or just one command + + + print("this could be a whole python script or just one call") + + + echo "this could be a whole sh script or just one command" + + + echo "this could be a whole powershell script or just one command" + + + + + dist/* + + dist/ + + + \ No newline at end of file diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..598cb8e --- /dev/null +++ b/build.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/com/flaremicro/crossjeeves/MainTest.java b/test/com/flaremicro/crossjeeves/MainTest.java new file mode 100644 index 0000000..db73d01 --- /dev/null +++ b/test/com/flaremicro/crossjeeves/MainTest.java @@ -0,0 +1,14 @@ +package com.flaremicro.crossjeeves; + +import static org.junit.Assert.*; + +import org.junit.Test; + +public class MainTest { + + @Test + public void test() { + assertTrue(true); + } + +}