summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2013-04-30 06:52:54 -0700
committerJesse Morgan <jesse@jesterpm.net>2013-04-30 06:52:54 -0700
commit206d83b645af34ddf7d67001b84c17b35a9fab9c (patch)
treef09eedab6fd2c862e4ec5a6232412d2c567e3aed /build.xml
Adding build files
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/build.xml b/build.xml
new file mode 100644
index 0000000..71fb93b
--- /dev/null
+++ b/build.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<project name="grow-frontend" default="build" basedir=".">
+
+ <property name="main.class" value="com.p4square.grow.frontend.TODO" />
+
+ <property file="${user.home}/.jesterpm-build-tools.properties" />
+ <property name="jesterpm.buildtools.root" value="../jesterpm-build-tools" />
+ <import file="${jesterpm.buildtools.root}/ant/tomcat-common.xml" />
+
+ <!-- Targets to get this project ready -->
+ <target name="bootstrap" depends="setup-tomcat" />
+
+</project>