summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.xml13
-rw-r--r--ivy.xml18
-rw-r--r--ivysettings.xml20
3 files changed, 51 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>
diff --git a/ivy.xml b/ivy.xml
new file mode 100644
index 0000000..04db705
--- /dev/null
+++ b/ivy.xml
@@ -0,0 +1,18 @@
+<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
+ <info organisation="com.p4square.grow" module="frontend" revision="1.0-snapshot" />
+
+ <configurations>
+ <conf name="default" />
+ <conf name="sources" />
+ </configurations>
+
+ <publications>
+ <artifact type="pom" ext="pom" conf="default" />
+ <artifact type="jar" ext="jar" conf="default" />
+ <artifact type="source" ext="jar" conf="sources" m:classifier="sources" />
+ </publications>
+
+ <dependencies defaultconf="default,sources">
+ <dependency org="net.jesterpm" name="fmfacade" rev="[1.0-SNAPSHOT,)" />
+ </dependencies>
+</ivy-module>
diff --git a/ivysettings.xml b/ivysettings.xml
new file mode 100644
index 0000000..177bd80
--- /dev/null
+++ b/ivysettings.xml
@@ -0,0 +1,20 @@
+<ivysettings>
+ <settings defaultResolver="default"/>
+ <resolvers>
+ <chain name="default">
+ <ibiblio name="central" m2compatible="true"/>
+
+ <ibiblio name="local-m2" m2compatible="true" root="file://${user.home}/.m2/repository" />
+ </chain>
+
+ <filesystem name="local-m2-publish" m2compatible="true">
+ <artifact pattern="${user.home}/.m2/repository/[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]" />
+ </filesystem>
+
+ <ibiblio name="org.restlet" m2compatible="true" root="http://maven.restlet.org"/>
+ </resolvers>
+
+ <modules>
+ <module organisation="org.restlet.*" resolver="org.restlet" />
+ </modules>
+</ivysettings>