From e36d4de3a9dc55359f3b54dbf06adc8209d1028c Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Fri, 06 Jan 2012 17:20:59 -0500 Subject: [PATCH] WAR/Express builds now copy bundled push scripts to configured scripts folder --- build.xml | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/build.xml b/build.xml index c704046..0d906ed 100644 --- a/build.xml +++ b/build.xml @@ -499,6 +499,15 @@ <copy tofile="${deployments.root}/WEB-INF/reference.properties" file="${basedir}/distrib/gitblit.properties"/> + <!-- Copy the supported Groovy hook scripts --> + <mkdir dir="${deployments.root}/WEB-INF/groovy" /> + <copy todir="${deployments.root}/WEB-INF/groovy"> + <fileset dir="${basedir}/groovy"> + <include name="sendmail.groovy" /> + <include name="jenkins.groovy" /> + </fileset> + </copy> + <!-- Build the WAR web.xml from the prototype web.xml and gitblit.properties --> <!-- THIS FILE IS NOT OVERRIDDEN ONCE IT IS BUILT!!! --> <java classpath="${project.build.dir}" classname="com.gitblit.build.BuildWebXml"> -- Gitblit v1.9.1