From fe326255202dcfac8b0991ca9d28e3cf4bcc4fe6 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Sun, 23 Oct 2011 12:28:48 -0400 Subject: [PATCH] Per-repository setting to skip summary metrics --- build.xml | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/build.xml b/build.xml index 5ed87d5..107fac3 100644 --- a/build.xml +++ b/build.xml @@ -104,6 +104,11 @@ </fileset> </copy> + <!-- copy gitblit.properties to the WEB-INF folder. + this file is only used for parsing setting descriptions. --> + <copy todir="${basedir}/src/WEB-INF" overwrite="true" + file="${basedir}/distrib/gitblit.properties" /> + <!-- Compile the build tool and execute it. This downloads missing compile-time dependencies from Maven. --> @@ -306,10 +311,11 @@ <delete dir="${project.war.dir}" /> - <!-- Copy web.xml and users.properties to WEB-INF --> + <!-- Copy web.xml, users.properties, and gitblit.properties to WEB-INF --> <copy todir="${project.war.dir}/WEB-INF"> <fileset dir="${basedir}/distrib"> <include name="users.properties" /> + <include name="gitblit.properties" /> </fileset> <fileset dir="${basedir}/src/WEB-INF"> <include name="web.xml" /> @@ -428,6 +434,9 @@ <genjar jarfile="manager.jar"> <resource file="${basedir}/src/com/gitblit/client/splash.png" /> <resource file="${basedir}/resources/gitblt-favicon.png" /> + <resource file="${basedir}/resources/gitweb-favicon.png" /> + <resource file="${basedir}/resources/user_16x16.png" /> + <resource file="${basedir}/resources/settings_16x16.png" /> <resource file="${basedir}/resources/lock_go_16x16.png" /> <resource file="${basedir}/resources/lock_pull_16x16.png" /> <resource file="${basedir}/resources/shield_16x16.png" /> -- Gitblit v1.9.1