summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2013-06-03 18:26:07 -0700
committerJesse Morgan <jesse@jesterpm.net>2013-06-03 18:26:07 -0700
commitee39f861d7a5147a8292647488b7dfc0cbeb1cce (patch)
tree49b91d9b3b3c0d45536cdff5a99b774b2cff3e17 /build.xml
parent2689b2e69e77677522bc75cb7d790bc30ff644ab (diff)
Initial frontend which can only serve static pages.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml9
1 files changed, 7 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 71fb93b..717de65 100644
--- a/build.xml
+++ b/build.xml
@@ -1,8 +1,8 @@
<?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 name="main.class" value="com.p4square.grow.frontend.GrowFrontend" />
+
<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" />
@@ -10,4 +10,9 @@
<!-- Targets to get this project ready -->
<target name="bootstrap" depends="setup-tomcat" />
+ <target name="frontend" depends="compile">
+ <java classname="com.p4square.grow.frontend.GrowFrontend"
+ classpathref="classpath.run" fork="true" />
+ </target>
+
</project>