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);
+ }
+
+}