From 908406e2a3721aa79e23129373a2612eed0945e4 Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Wed, 27 Mar 2013 18:40:14 -0400
Subject: [PATCH] Removed obsolete Build classes and cleanup remnants of reorganization

---
 /dev/null |  160 -----------------------------------------------------
 1 files changed, 0 insertions(+), 160 deletions(-)

diff --git a/src/com/gitblit/EnforceAuthenticationFilter.java b/src/com/gitblit/EnforceAuthenticationFilter.java
deleted file mode 100644
index 2a17996..0000000
--- a/src/com/gitblit/EnforceAuthenticationFilter.java
+++ /dev/null
@@ -1,102 +0,0 @@
-/*
- * Copyright 2013 Laurens Vrijnsen
- * Copyright 2013 gitblit.com.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */package com.gitblit;
-
-import java.io.IOException;
-import java.text.MessageFormat;
-
-import javax.servlet.Filter;
-import javax.servlet.FilterChain;
-import javax.servlet.FilterConfig;
-import javax.servlet.ServletException;
-import javax.servlet.ServletRequest;
-import javax.servlet.ServletResponse;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-import com.gitblit.models.UserModel;
-
-/**
- * This filter enforces authentication via HTTP Basic Authentication, if the settings indicate so.
- * It looks at the settings "web.authenticateViewPages" and "web.enforceHttpBasicAuthentication"; if
- * both are true, any unauthorized access will be met with a HTTP Basic Authentication header.
- *
- * @author Laurens Vrijnsen
- *
- */
-public class EnforceAuthenticationFilter implements Filter {
-	
-	protected transient Logger logger = LoggerFactory.getLogger(getClass());
-
-	/* 
-	 * @see javax.servlet.Filter#init(javax.servlet.FilterConfig)
-	 */
-	@Override
-	public void init(FilterConfig filterConfig) throws ServletException {
-		// nothing to be done
-
-	} //init
-	
-
-	/* 
-	 * This does the actual filtering: is the user authenticated? If not, enforce HTTP authentication (401)
-	 * 
-	 * @see javax.servlet.Filter#doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain)
-	 */
-	@Override
-	public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
-		
-		/*
-		 * Determine whether to enforce the BASIC authentication:
-		 */
-		@SuppressWarnings("static-access")
-		Boolean mustForceAuth = GitBlit.self().getBoolean(Keys.web.authenticateViewPages, false)
-								&& GitBlit.self().getBoolean(Keys.web.enforceHttpBasicAuthentication, false);
-		
-		HttpServletRequest  HttpRequest  = (HttpServletRequest)request;
-		HttpServletResponse HttpResponse = (HttpServletResponse)response; 
-		UserModel user = GitBlit.self().authenticate(HttpRequest);
-		
-		if (mustForceAuth && (user == null)) {
-			// not authenticated, enforce now:
-			logger.debug(MessageFormat.format("EnforceAuthFilter: user not authenticated for URL {0}!", request.toString()));
-			@SuppressWarnings("static-access")
-			String CHALLENGE = MessageFormat.format("Basic realm=\"{0}\"", GitBlit.self().getString("web.siteName",""));
-			HttpResponse.setHeader("WWW-Authenticate", CHALLENGE);
-			HttpResponse.sendError(HttpServletResponse.SC_UNAUTHORIZED);
-			return;
-
-		} else {
-			// user is authenticated, or don't care, continue handling
-			chain.doFilter( request, response );
-			
-		} // authenticated
-	} // doFilter
-
-	
-	/* 
-	 * @see javax.servlet.Filter#destroy()
-	 */
-	@Override
-	public void destroy() {
-		// Nothing to be done
-
-	} // destroy
-
-}
diff --git a/src/com/gitblit/wicket/pages/LogoutPage.html b/src/com/gitblit/wicket/pages/LogoutPage.html
deleted file mode 100644
index d407783..0000000
--- a/src/com/gitblit/wicket/pages/LogoutPage.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml"  
-      xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"  
-      xml:lang="en"  
-      lang="en"> 
-<body>
-<wicket:extend>
-	<div class="navbar navbar-fixed-top">
-		<div class="navbar-inner">
-			<div class="container">
-				<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
-            			<span class="icon-bar"></span>
-            			<span class="icon-bar"></span>
-            			<span class="icon-bar"></span>
-          		</a>
-				<a class="brand" wicket:id="rootLink">
-					<img src="gitblt_25_white.png" width="79" height="25" alt="gitblit" class="logo"/>
-				</a>
-				
-			</div>
-		</div>
-	</div>
-				
-	<!-- subclass content -->
-	<div class="container">
-		<div style="text-align:center" wicket:id="feedback">[Feedback Panel]</div>
-		
-		<h1><wicket:message key="gb.sessionEnded">[Session has ended]</wicket:message></h1>
-		<p><wicket:message key="gb.closeBrowser">[Please close the browser]</wicket:message></p>
-	</div>
-</wicket:extend>
-</body>
-</html>
\ No newline at end of file
diff --git a/src/main/java/com/gitblit/build/Build.java b/src/main/java/com/gitblit/build/Build.java
deleted file mode 100644
index 3a9ed75..0000000
--- a/src/main/java/com/gitblit/build/Build.java
+++ /dev/null
@@ -1,967 +0,0 @@
-/*
- * Copyright 2011 gitblit.com.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package com.gitblit.build;
-
-import java.io.BufferedInputStream;
-import java.io.ByteArrayOutputStream;
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.FileWriter;
-import java.io.FilenameFilter;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.RandomAccessFile;
-import java.net.URL;
-import java.text.MessageFormat;
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.List;
-import java.util.Properties;
-
-import com.gitblit.Constants;
-import com.gitblit.utils.StringUtils;
-
-/**
- * The Build class downloads runtime and compile-time jar files from the Apache
- * or Eclipse Maven repositories.
- * 
- * It also generates the Keys class from the gitblit.properties file.
- * 
- * Its important that this class have minimal compile dependencies since its
- * called very early in the build script.
- * 
- * @author James Moger
- * 
- */
-public class Build {
-
-    private static final String osName = System.getProperty("os.name");
-
-	public interface DownloadListener {
-		public void downloading(String name);
-	}
-
-	/**
-	 * BuildType enumeration representing compile-time or runtime. This is used
-	 * to download dependencies either for Gitblit GO runtime or for setting up
-	 * a development environment.
-	 */
-	public static enum BuildType {
-		RUNTIME, COMPILETIME;
-	}
-
-	private static DownloadListener downloadListener;
-
-	public static void main(String... args) {
-		runtime();
-		compiletime();
-		buildSettingKeys();
-		delete(
-				"bcmail-jdk16-1.46.jar",
-				"bcprov-jdk16-1.46.jar",
-				"src/bcmail-jdk16-1.46-sources.jar",
-				"src/bcprov-jdk16-1.46-sources.jar");
-	}
-
-	public static void runtime() {
-		downloadFromApache(MavenObject.JCOMMANDER, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.JETTY, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.JETTY_AJP, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.SERVLET, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.SLF4JAPI, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.SLF4LOG4J, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.LOG4J, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.WICKET, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.WICKET_EXT, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.WICKET_AUTH_ROLES, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.WICKET_GOOGLE_CHARTS, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.MARKDOWNPAPERS, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.BOUNCYCASTLE, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.BOUNCYCASTLE_MAIL, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.BOUNCYCASTLE_PKIX, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.JSCH, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.ROME, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.JDOM, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.GSON, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.MAIL, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.GROOVY, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.LUCENE, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.LUCENE_HIGHLIGHTER, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.LUCENE_MEMORY, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.LUCENE_QUERIES, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.JAKARTA_REGEXP, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.UNBOUND_ID, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.IVY, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.JCALENDAR, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.COMMONS_COMPRESS, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.XZ, BuildType.RUNTIME);
-
-		//needed for selenium ui tests
-		downloadFromApacheToExtSelenium(MavenObject.SEL_API, BuildType.RUNTIME);
-		downloadFromApacheToExtSelenium(MavenObject.SEL_FF, BuildType.RUNTIME);
-		downloadFromApacheToExtSelenium(MavenObject.SEL_JAVA, BuildType.RUNTIME);
-		downloadFromApacheToExtSelenium(MavenObject.SEL_REMOTE, BuildType.RUNTIME);
-		downloadFromApacheToExtSelenium(MavenObject.SEL_SUPPORT, BuildType.RUNTIME);
-		downloadFromApacheToExtSelenium(MavenObject.GUAVA, BuildType.RUNTIME);
-		downloadFromApacheToExtSelenium(MavenObject.JSON, BuildType.RUNTIME);
-		downloadFromApacheToExtSelenium(MavenObject.COMMONS_EXEC, BuildType.RUNTIME);
-		downloadFromApacheToExtSelenium(MavenObject.HTTPCLIENT, BuildType.RUNTIME);
-		downloadFromApacheToExtSelenium(MavenObject.HTTPCORE, BuildType.RUNTIME);
-		downloadFromApacheToExtSelenium(MavenObject.HTTPMIME, BuildType.RUNTIME);
-		downloadFromApacheToExtSelenium(MavenObject.COMMONS_LOGGING, BuildType.RUNTIME);
-		
-		downloadFromEclipse(MavenObject.JGIT, BuildType.RUNTIME);
-		downloadFromEclipse(MavenObject.JGIT_HTTP, BuildType.RUNTIME);
-	}
-
-	public static void compiletime() {
-		downloadFromApache(MavenObject.JUNIT, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.HAMCREST, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.JCOMMANDER, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.JETTY, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.JETTY_AJP, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.SERVLET, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.SLF4JAPI, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.SLF4LOG4J, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.LOG4J, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.WICKET, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.WICKET_EXT, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.WICKET_AUTH_ROLES, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.WICKET_GOOGLE_CHARTS, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.MARKDOWNPAPERS, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.BOUNCYCASTLE, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.BOUNCYCASTLE_MAIL, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.BOUNCYCASTLE_PKIX, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.JSCH, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.ROME, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.JDOM, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.GSON, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.MAIL, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.GROOVY, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.LUCENE, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.LUCENE_HIGHLIGHTER, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.LUCENE_MEMORY, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.LUCENE_QUERIES, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.JAKARTA_REGEXP, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.UNBOUND_ID, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.IVY, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.JCALENDAR, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.COMMONS_COMPRESS, BuildType.COMPILETIME);
-		downloadFromApache(MavenObject.XZ, BuildType.COMPILETIME);
-
-		//needed for selenium ui tests
-		downloadFromApacheToExtSelenium(MavenObject.SEL_API, BuildType.COMPILETIME);
-		downloadFromApacheToExtSelenium(MavenObject.SEL_FF, BuildType.COMPILETIME);
-		downloadFromApacheToExtSelenium(MavenObject.SEL_JAVA, BuildType.COMPILETIME);
-		downloadFromApacheToExtSelenium(MavenObject.SEL_REMOTE, BuildType.COMPILETIME);
-		downloadFromApacheToExtSelenium(MavenObject.SEL_SUPPORT, BuildType.COMPILETIME);
-		downloadFromApacheToExtSelenium(MavenObject.GUAVA, BuildType.COMPILETIME);
-		downloadFromApacheToExtSelenium(MavenObject.JSON, BuildType.COMPILETIME);
-		downloadFromApacheToExtSelenium(MavenObject.COMMONS_EXEC, BuildType.COMPILETIME);
-		downloadFromApacheToExtSelenium(MavenObject.HTTPCLIENT, BuildType.COMPILETIME);
-		downloadFromApacheToExtSelenium(MavenObject.HTTPCORE, BuildType.COMPILETIME);
-		downloadFromApacheToExtSelenium(MavenObject.HTTPMIME, BuildType.COMPILETIME);
-		downloadFromApacheToExtSelenium(MavenObject.COMMONS_LOGGING, BuildType.COMPILETIME);
-		
-		downloadFromEclipse(MavenObject.JGIT, BuildType.COMPILETIME);
-		downloadFromEclipse(MavenObject.JGIT_HTTP, BuildType.COMPILETIME);
-
-		// needed for site publishing
-		downloadFromApache(MavenObject.COMMONSNET, BuildType.RUNTIME);
-	}
-	
-	private static void delete(String... files) {
-		for (String name : files) {
-			File file = new File("ext", name);
-			if (file.exists()) {
-				file.delete();
-			}
-		}
-	}
-
-	public static void federationClient() {
-		downloadFromApache(MavenObject.JCOMMANDER, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.SERVLET, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.MAIL, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.SLF4JAPI, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.SLF4LOG4J, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.LOG4J, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.GSON, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.JSCH, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.LUCENE, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.LUCENE_HIGHLIGHTER, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.LUCENE_MEMORY, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.LUCENE_QUERIES, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.JAKARTA_REGEXP, BuildType.RUNTIME);
-
-		downloadFromEclipse(MavenObject.JGIT, BuildType.RUNTIME);
-	}
-
-	public static void manager(DownloadListener listener) {
-		downloadListener = listener;
-		downloadFromApache(MavenObject.GSON, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.ROME, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.JDOM, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.JSCH, BuildType.RUNTIME);
-
-		downloadFromEclipse(MavenObject.JGIT, BuildType.RUNTIME);
-	}
-	
-	public static void authority(DownloadListener listener) {
-		downloadListener = listener;
-		downloadFromApache(MavenObject.JCOMMANDER, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.JSCH, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.SLF4JAPI, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.SLF4LOG4J, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.LOG4J, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.BOUNCYCASTLE, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.BOUNCYCASTLE_MAIL, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.BOUNCYCASTLE_PKIX, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.JCALENDAR, BuildType.RUNTIME);
-		downloadFromApache(MavenObject.MAIL, BuildType.RUNTIME);
-
-		downloadFromEclipse(MavenObject.JGIT, BuildType.RUNTIME);
-	}
-
-	/**
-	 * Builds the Keys class based on the gitblit.properties file and inserts
-	 * the class source into the project source folder.
-	 */
-	public static void buildSettingKeys() {
-		// Load all keys
-		Properties properties = new Properties();
-		FileInputStream is = null;
-		try {
-			is = new FileInputStream(new File("distrib", Constants.PROPERTIES_FILE));
-			properties.load(is);
-		} catch (Throwable t) {
-			t.printStackTrace();
-		} finally {
-			if (is != null) {
-				try {
-					is.close();
-				} catch (Throwable t) {
-					// IGNORE
-				}
-			}
-		}
-		List<String> keys = new ArrayList<String>(properties.stringPropertyNames());
-		Collections.sort(keys);
-
-		KeyGroup root = new KeyGroup();
-		for (String key : keys) {
-			root.addKey(key);
-		}
-
-		// Save Keys class definition
-		try {
-			File file = new File("src/com/gitblit/Keys.java");
-			FileWriter fw = new FileWriter(file, false);
-			fw.write(root.generateClass("com.gitblit", "Keys"));
-			fw.close();
-		} catch (Throwable t) {
-			t.printStackTrace();
-		}
-	}
-	
-	private static class KeyGroup {
-		final KeyGroup parent;
-		final String namespace;
-		
-		String name;
-		List<KeyGroup> children;		
-		List<String> fields;		
-		
-		KeyGroup() {
-			this.parent = null;
-			this.namespace = "";
-			this.name = "";	
-		}
-		
-		KeyGroup(String namespace, KeyGroup parent) {
-			this.parent = parent;
-			this.namespace = namespace;
-			if (parent.children == null) {
-				parent.children = new ArrayList<KeyGroup>();
-			}
-			parent.children.add(this);
-		}
-		
-		void addKey(String key) {
-			String keyspace = "";
-			String field = key;
-			if (key.indexOf('.') > -1) {
-				keyspace = key.substring(0, key.lastIndexOf('.'));
-				field = key.substring(key.lastIndexOf('.') + 1);
-				KeyGroup group = addKeyGroup(keyspace);
-				group.addKey(field);
-			} else {
-				if (fields == null) {
-					fields = new ArrayList<String>();
-				}
-				fields.add(key);
-			}
-		}
-				
-		KeyGroup addKeyGroup(String keyspace) {
-			KeyGroup parent = this;
-			KeyGroup node = null;			
-			String [] space = keyspace.split("\\.");
-			for (int i = 0; i < space.length; i++) {
-				StringBuilder namespace = new StringBuilder();
-				for (int j = 0; j <= i; j++) {
-					namespace.append(space[j]);
-					if (j < i) {
-						namespace.append('.');
-					}
-				}
-				if (parent.children != null) {
-					for (KeyGroup child : parent.children) {
-						if (child.name.equals(space[i])) {
-							node = child;					
-						}
-					}
-				}
-				if (node == null) {
-					node = new KeyGroup(namespace.toString(), parent);
-					node.name = space[i];
-				}
-				parent = node;
-				node = null;
-			}
-			return parent;
-		}		
-		
-		String fullKey(String field) {
-			if (namespace.equals("")) {
-				return field;
-			}
-			return namespace + "." + field;
-		}
-		
-		String generateClass(String packageName, String className) {
-			StringBuilder sb = new StringBuilder();
-			sb.append("package ").append(packageName).append(";\n");
-			sb.append('\n');
-			sb.append("/*\n");
-			sb.append(" * This class is auto-generated from the properties file.\n");
-			sb.append(" * Do not version control!\n");
-			sb.append(" */\n");
-			sb.append(MessageFormat.format("public final class {0} '{'\n\n", className));
-			sb.append(generateClass(this, 0));
-			sb.append("}\n");
-			return sb.toString();
-		}
-		
-		String generateClass(KeyGroup group, int level) {
-			String classIndent = StringUtils.leftPad("", level, '\t');
-			String fieldIndent = StringUtils.leftPad("", level + 1, '\t');
-			
-			// begin class
-			StringBuilder sb = new StringBuilder();
-			if (!group.namespace.equals("")) {
-				sb.append(classIndent).append(MessageFormat.format("public static final class {0} '{'\n\n", group.name));
-				sb.append(fieldIndent).append(MessageFormat.format("public static final String _ROOT = \"{0}\";\n\n", group.namespace));
-			}
-			
-			if (group.fields != null) {
-				// fields
-				for (String field : group.fields) {					
-					sb.append(fieldIndent).append(MessageFormat.format("public static final String {0} = \"{1}\";\n\n", field, group.fullKey(field)));
-				}
-			}
-			if (group.children != null) {
-				// inner classes
-				for (KeyGroup child : group.children) {
-					sb.append(generateClass(child, level + 1));
-				}
-			}
-			// end class
-			if (!group.namespace.equals("")) {
-				sb.append(classIndent).append("}\n\n");
-			}
-			return sb.toString();			
-		}
-	}
-
-	/**
-	 * Download a file from the official Apache Maven repository.
-	 * 
-	 * @param mo
-	 *            the maven object to download.
-	 * @return
-	 */
-	private static List<File> downloadFromApache(MavenObject mo, BuildType type) {
-		return downloadFromMaven("http://repo1.maven.org/maven2/", mo, type);
-	}
-
-	/**
-	 * Download a file from the official Eclipse Maven repository.
-	 * 
-	 * @param mo
-	 *            the maven object to download.
-	 * @return
-	 */
-	private static List<File> downloadFromEclipse(MavenObject mo, BuildType type) {
-		return downloadFromMaven("http://download.eclipse.org/jgit/maven/", mo, type);
-	}
-
-	/**
-	 * Download a file from a Maven repository.
-	 * 
-	 * @param mo
-	 *            the maven object to download.
-	 * @return
-	 */
-	private static List<File> downloadFromMaven(String mavenRoot, MavenObject mo, BuildType type, String targetFolder) {
-		List<File> downloads = new ArrayList<File>();
-		String[] jars = { "" };
-		if (BuildType.RUNTIME.equals(type)) {
-			jars = new String[] { "" };
-		} else if (BuildType.COMPILETIME.equals(type)) {
-			jars = new String[] { "-sources" };
-		}
-		for (String jar : jars) {
-			File targetFile = mo.getLocalFile(targetFolder, jar);
-			if ("-sources".equals(jar)) {
-				File relocated = new File(targetFolder+"/src", targetFile.getName());
-				if (targetFile.exists()) {
-					// move -sources jar to ext/src folder
-					targetFile.renameTo(relocated);
-				}
-				// -sources jars are located in ext/src
-				targetFile = relocated;
-			}
-			
-			if (targetFile.exists()) {
-				downloads.add(targetFile);
-				removeObsoleteArtifacts(mo, type, targetFile.getParentFile());
-				continue;
-			}
-			String expectedSHA1 = mo.getSHA1(jar);
-			if (expectedSHA1 == null) {
-				// skip this jar
-				continue;
-			}
-			float approximateLength = mo.getApproximateLength(jar);
-			String mavenURL = mavenRoot + mo.getRepositoryPath(jar);
-			if (!targetFile.getAbsoluteFile().getParentFile().exists()) {
-				boolean success = targetFile.getAbsoluteFile().getParentFile().mkdirs();
-				if (!success) {
-					throw new RuntimeException("Failed to create destination folder structure!");
-				}
-			}
-			if (downloadListener != null) {
-				downloadListener.downloading(mo.name + "...");
-			}
-			ByteArrayOutputStream buff = new ByteArrayOutputStream();
-			try {
-				URL url = new URL(mavenURL);
-				InputStream in = new BufferedInputStream(url.openStream());
-				byte[] buffer = new byte[4096];
-				int downloadedLen = 0;
-				float lastProgress = 0f;
-
-				updateDownload(0, targetFile);
-				while (true) {
-					int len = in.read(buffer);
-					if (len < 0) {
-						break;
-					}
-					downloadedLen += len;
-					buff.write(buffer, 0, len);
-					float progress = downloadedLen / approximateLength;
-					if (progress - lastProgress >= 0.1f) {
-						lastProgress = progress;
-						updateDownload(progress, targetFile);
-						if (downloadListener != null) {
-							int percent = Math.min(100, Math.round(100 * progress));
-							downloadListener.downloading(mo.name + " (" + percent + "%)");
-						}
-					}
-				}
-				in.close();
-				updateDownload(1f, targetFile);
-				if (downloadListener != null) {
-					downloadListener.downloading(mo.name + " (100%)");
-				}
-
-			} catch (IOException e) {
-				throw new RuntimeException("Error downloading " + mavenURL + " to " + targetFile, e);
-			}
-			byte[] data = buff.toByteArray();
-			String calculatedSHA1 = StringUtils.getSHA1(data);
-
-			System.out.println();
-
-			if (expectedSHA1.length() == 0) {
-				updateProgress(0, "sha: " + calculatedSHA1);
-				System.out.println();
-			} else {
-				if (!calculatedSHA1.equals(expectedSHA1)) {
-					throw new RuntimeException("SHA1 checksum mismatch; got: " + calculatedSHA1);
-				}
-			}
-			try {
-				RandomAccessFile ra = new RandomAccessFile(targetFile, "rw");
-				ra.write(data);
-				ra.setLength(data.length);
-				ra.close();
-			} catch (IOException e) {
-				throw new RuntimeException("Error writing to file " + targetFile, e);
-			}
-			downloads.add(targetFile);
-			
-			removeObsoleteArtifacts(mo, type, targetFile.getParentFile());
-		}
-		return downloads;
-	}
-	
-	/**
-	 * Download a file from the official Apache Maven repository.
-	 * 
-	 * @param mo
-	 *            the maven object to download.
-	 * @return
-	 */
-	private static List<File> downloadFromApacheToExtSelenium(MavenObject mo,
-			BuildType type) {
-		return downloadFromMaven("http://repo1.maven.org/maven2/", mo, type,
-				"ext/seleniumhq");
-	}
-	
-	/**
-	 * Download a file from the official Apache Maven repository.
-	 * 
-	 * @param mo
-	 *            the maven object to download.
-	 * @return
-	 */
-	private static List<File> downloadFromMaven(String mavenRoot,
-			MavenObject mo, BuildType type) {
-		return downloadFromMaven(mavenRoot, mo, type, "ext");
-	}
-	
-	private static void removeObsoleteArtifacts(final MavenObject mo, final BuildType type, File folder) {
-		File [] removals = folder.listFiles(new FilenameFilter() {
-			@Override
-			public boolean accept(File dir, String name) {
-				String n = name.toLowerCase();
-				String dep = mo.artifact.toLowerCase();
-				if (n.startsWith(dep)) {
-					String suffix = "-" + mo.version;
-					if (type.equals(BuildType.COMPILETIME)) {
-						suffix += "-sources.jar";
-					} else {
-						suffix += ".jar";
-					}
-					if (!n.endsWith(suffix)) {
-						return true;
-					}
-				}
-				return false;
-			}
-		});
-		
-		// delete any matches
-		if (removals != null) {
-			for (File file : removals) {
-				System.out.println("deleting " + file);
-				file.delete();
-			}
-		}
-	}
-
-	private static void updateDownload(float progress, File file) {
-		updateProgress(progress, "d/l: " + file.getName());
-	}
-
-	private static void updateProgress(float progress, String url) {
-        boolean isWindows = osName.contains("Windows");
-        String anim = "==========";
-		int width = Math.round(anim.length() * progress);
-        if (isWindows) System.out.print("\r");
-		System.out.print("[");
-		System.out.print(anim.substring(0, Math.min(width, anim.length())));
-		for (int i = 0; i < anim.length() - width; i++) {
-			System.out.print(' ');
-		}
-		System.out.print("] " + url);
-        if (!isWindows) System.out.println();
-	}
-
-	/**
-	 * MavenObject represents a complete maven artifact (binary, sources, and
-	 * javadoc). MavenObjects can be downloaded and checksummed to confirm
-	 * authenticity.
-	 */
-	private static class MavenObject {
-
-		public static final MavenObject JCOMMANDER = new MavenObject(
-                "jCommander", "com/beust", "jcommander", "1.17",
-                34000, 32000, 141000,
-				"219a3540f3b27d7cc3b1d91d6ea046cd8723290e",
-				"0bb50eec177acf0e94d58e0cf07262fe5164331d",
-				"c7adc475ca40c288c93054e0f4fe58f3a98c0cb5");
-
-		public static final MavenObject JETTY = new MavenObject(
-                "Jetty", "org/eclipse/jetty/aggregate", "jetty-webapp", "7.6.8.v20121106",
-                1000000, 680000, 2720000,
-                "6333969b4d509c4b681e05302ca7ebccb9c3efb5",
-				"354f2752ed6544296bc0fc92e533d68a5b03045b",
-				"");
-
-		public static final MavenObject JETTY_AJP = new MavenObject(
-                "Jetty-AJP", "org/eclipse/jetty", "jetty-ajp", "7.6.8.v20121106",
-                32000, 22000, 97000,
-                "95bd1c89bb2afd4eeaabc6f4b0183a9f26a522d7",
-                "e1fc2539202ebb240a87a080bc44a24c93d7318b",
-                "");
-		
-		public static final MavenObject SERVLET = new MavenObject(
-                "Servlet 3.0", "javax/servlet", "javax.servlet-api", "3.0.1",
-                84000, 211000, 0,
-				"6bf0ebb7efd993e222fc1112377b5e92a13b38dd",
-				"01952f91d84016a39e31346c9d18bd8c9c4a128a",
-                null);
-
-		public static final MavenObject SLF4JAPI = new MavenObject(
-                "SLF4J API", "org/slf4j", "slf4j-api", "1.6.6",
-                25500, 45000, 182000,
-				"ce53b0a0e2cfbb27e8a59d38f79a18a5c6a8d2b0",
-				"bcd0e21b1572960cefd449f8a16efab5b6b8e644",
-				"4253b52aabf1c5a5f20c191a261e6ada0fcf621d");
-
-		public static final MavenObject SLF4LOG4J = new MavenObject(
-                "SLF4J LOG4J", "org/slf4j", "slf4j-log4j12", "1.6.6",
-                9800, 9500, 52400,
-				"5cd9b4fbc3ff6a97beaade3206137d76f65df805",
-				"497bfac9a678118e7ff75d1f3b8c3bcc06dc9c8c",
-				"69855e2a85d9249bb577df3c5076bc2cb34975d7");
-
-		public static final MavenObject LOG4J = new MavenObject(
-                "Apache LOG4J", "log4j", "log4j", "1.2.17",
-                481000, 471000, 1455000,
-                "5af35056b4d257e4b64b9e8069c0746e8b08629f",
-				"677abe279b68c5e7490d6d50c6951376238d7d3e",
-				"c10c20168206896442f3192d5417815df7fcbf9a");
-
-		public static final MavenObject WICKET = new MavenObject(
-                "Apache Wicket", "org/apache/wicket", "wicket", "1.4.21",
-                1960000, 1906000, 6818000,
-				"cce9dfd3088e18a3cdcf9be33b5b76caa48dc4c6",
-				"e8c2bfe2c96a2da7a0eca947a2f60dc3242e7229",
-				"");
-
-		public static final MavenObject WICKET_EXT = new MavenObject(
-                "Apache Wicket Extensions", "org/apache/wicket", "wicket-extensions", "1.4.21",
-                1180000, 1118000, 1458000,
-				"fac510c7ee4399a29b927405ec3de40b67d105d8",
-				"ee3409ce9ed64ad8cc8d69abbd7d63f07e10851a",
-				"");
-
-		public static final MavenObject WICKET_AUTH_ROLES = new MavenObject(
-				"Apache Wicket Auth Roles", "org/apache/wicket", "wicket-auth-roles", "1.4.21",
-				44000, 45000, 166000,
-                "e78df70ca942e2e15287c393f236b32fbe6f9a30",
-				"47c301212cce43a70caa72f41a9a1aefcf26a533",
-				"");
-
-		public static final MavenObject WICKET_GOOGLE_CHARTS = new MavenObject(
-				"Apache Wicket Google Charts Add-On", "org/wicketstuff", "googlecharts", "1.4.21",
-				34000, 18750, 161000,
-                "73d7540267afc3a0e91ca6148d3073e050dba180",
-				"627b125cc6029d4d5c59c3a910c1bef347384d97",
-				"");
-
-		public static final MavenObject JUNIT = new MavenObject(
-                "JUnit", "junit", "junit", "4.10",
-				253000, 141000, 0, "e4f1766ce7404a08f45d859fb9c226fc9e41a861",
-                "6c98d6766e72d5575f96c9479d1c1d3b865c6e25", "");
-
-		public static final MavenObject HAMCREST = new MavenObject(
-                "Hamcrest Core", "org/hamcrest", "hamcrest-core", "1.1",
-				77000, 0, 0,
-                "860340562250678d1a344907ac75754e259cdb14",
-                null,
-                "");
-
-		public static final MavenObject MARKDOWNPAPERS = new MavenObject(
-                "MarkdownPapers", "org/tautua/markdownpapers", "markdownpapers-core", "1.3.2",
-                92000, 60000, 268000,
-				"da22db6660e90b9a677bbdfc2c511c619ea5c249",
-				"6a7228280a229144afe6c01351a8f44675d8524d",
-				"");
-
-		public static final MavenObject BOUNCYCASTLE = new MavenObject(
-                "BouncyCastle", "org/bouncycastle", "bcprov-jdk15on", "1.47",
-                1900000, 1400000, 4670000,
-				"b6f5d9926b0afbde9f4dbe3db88c5247be7794bb",
-				"85e6e1ad449d5a3f09624bf4038fc8d2b02de81c",
-				"");
-
-		public static final MavenObject BOUNCYCASTLE_MAIL = new MavenObject(
-                "BouncyCastle Mail", "org/bouncycastle", "bcmail-jdk15on", "1.47",
-                502000, 420000, 482000,
-				"a35ccec640177d0de5815568529021af5546d6a7",
-				"f742330cfe1e7365dbdf773c24b92382172164a7",
-				"");
-
-		public static final MavenObject BOUNCYCASTLE_PKIX = new MavenObject(
-                "BouncyCastle PKIX", "org/bouncycastle", "bcpkix-jdk15on", "1.47",
-                502000, 420000, 482000,
-				"cd204e6f26d2bbf65ff3a30de8831d3a1344e851",
-				"80e774a73d0e6a6b40ddf35fff613f9f30fe2a98",
-				"");
-
-		public static final MavenObject JGIT = new MavenObject(
-                "JGit", "org/eclipse/jgit", "org.eclipse.jgit", "2.2.0.201212191850-r",
-                1600000, 1565000, 3460000,
-				"97d0761b9dd618d1f9f6c16c35c3ddf045ba536c",
-				"08dcf9546f4d61e1b8a50df5da5513006023b64b",
-				"");
-
-		public static final MavenObject JGIT_HTTP = new MavenObject(
-                "JGit", "org/eclipse/jgit", "org.eclipse.jgit.http.server", "2.2.0.201212191850-r",
-                68000, 62000, 110000,
-				"8ad4fc4fb9529d645249bb46ad7e54d98436cb65",
-				"3385cf294957d1d34c1270b468853aea347b36ca",
-				"");
-
-		public static final MavenObject JSCH = new MavenObject(
-                "JSch", "com/jcraft", "jsch", "0.1.44-1",
-                214000, 211000, 413000,
-                "2e9ae08de5a71bd0e0d3ba2558598181bfa71d4e",
-				"e528f593b19b04d500992606f58b87fcfded8883",
-				"d0ffadd0a4ab909d94a577b5aad43c13b617ddcb");
-
-		public static final MavenObject COMMONSNET = new MavenObject(
-                "commons-net", "commons-net", "commons-net", "1.4.0",
-                181000, 0, 0,
-                "eb47e8cad2dd7f92fd7e77df1d1529cae87361f7",
-				"",
-                "");
-
-		public static final MavenObject ROME = new MavenObject(
-                "rome", "rome", "rome", "0.9",
-				208000, 196000, 407000,
-                "dee2705dd01e79a5a96a17225f5a1ae30470bb18",
-				"226f851dc44fd94fe70b9c471881b71f88949cbf",
-				"8d7d867b97eeb3a9196c3926da550ad042941c1b");
-
-		public static final MavenObject JDOM = new MavenObject(
-                "jdom", "jdom", "jdom", "1.0",
-				153000, 235000, 445000,
-                "a2ac1cd690ab4c80defe7f9bce14d35934c35cec",
-				"662abe0196cf554d4d7374f5d6382034171b652c",
-				"");
-
-		public static final MavenObject GSON = new MavenObject(
-                "gson", "com/google/code/gson", "gson", "1.7.2",
-                174000, 142000, 247000,
-				"112366d8158749e25532ebce162232c6e0fb20a5",
-				"a6fe3006df46174a9c1c56b3c51357b9bfde5874",
-				"537f729ac63b6132a795a3c1f2e13b327e872333");
-
-		public static final MavenObject MAIL = new MavenObject(
-                "javax.mail", "javax/mail", "mail", "1.4.3",
-                462000, 642000, 0,
-                "8154bf8d666e6db154c548dc31a8d512c273f5ee",
-				"5875e2729de83a4e46391f8f979ec8bd03810c10", null);
-
-		public static final MavenObject GROOVY = new MavenObject(
-                "groovy", "org/codehaus/groovy", "groovy-all", "1.8.8",
-                6143000, 2290000, 4608000,
-                "98a489343d3c30da817d36cbea5de11ed07bef31",
-				"5f847ed18009f8a034bad3906e39f771c01728c1", "");
-
-		public static final MavenObject LUCENE = new MavenObject(
-                "lucene", "org/apache/lucene", "lucene-core", "3.6.1",
-                1540000, 1431000, 3608000,
-                "6ae2c83c77a1ffa5840b9151a271ab3f451f6e0c",
-				"6925deb6b78e63bbcac382004f00b98133327057", "");
-
-		public static final MavenObject LUCENE_HIGHLIGHTER = new MavenObject(
-                "lucene highlighter", "org/apache/lucene", "lucene-highlighter", "3.6.1",
-                89200, 85000, 0,
-                "2bd49695e9891697c5f290aa94c3412dfb95b096",
-				"20ae81816ce9c27186ef0f2e92a57812c9ee3b6c", "");
-
-		public static final MavenObject LUCENE_MEMORY = new MavenObject(
-                "lucene memory", "org/apache/lucene", "lucene-memory", "3.6.1",
-                30000, 23000, 0,
-                "8c7ca5572edea50973dc0d26cf75c27047eebe7e",
-				"2e291e96d25132e002b1c8240e361d1272d113e1", "");
-
-		public static final MavenObject LUCENE_QUERIES = new MavenObject(
-                "lucene queries", "org/apache/lucene", "lucene-queries", "3.6.1",
-                47400, 48600, 0,
-                "4ed6022dd4aa80b932a1546e7e39e3b8bbe7acb7",
-				"dc425c75d988e4975d314772035a46b6a17dcc8d", "");
-
-		public static final MavenObject JAKARTA_REGEXP = new MavenObject(
-                "jakarta regexp", "jakarta-regexp", "jakarta-regexp", "1.4",
-                28500, 0, 0,
-                "0ea514a179ac1dd7e81c7e6594468b9b9910d298",
-				null, "");
-		
-		public static final MavenObject UNBOUND_ID = new MavenObject(
-                "unbound id", "com/unboundid", "unboundid-ldapsdk", "2.3.0",
-                1383417, 1439721, 0,
-                "6fde8d9fb4ee3e7e3d7e764e3ea57195971e2eb2",
-				"5276d3d29630693dba99ab9f7ea54f4c471d3af1",
-                "");
-		
-		public static final MavenObject IVY = new MavenObject(
-                "ivy", "org/apache/ivy", "ivy",	"2.2.0",
-                948000, 744000, 0,
-                "f9d1e83e82fc085093510f7d2e77d81d52bc2081",
-				"0312527950ad0e8fbab37228fbed3bf41a6fe0a1", "");
-
-		public static final MavenObject JCALENDAR = new MavenObject(
-                "jcalendar", "com/toedter", "jcalendar", "1.3.2",
-                127000, 0, 0,
-                "323a672aeacb5f5f4461be3b7f7d9d3e4bda80d4",
-				null, "");
-
-		public static final MavenObject COMMONS_COMPRESS = new MavenObject(
-                "commons-compress", "org/apache/commons", "commons-compress", "1.4.1",
-                242000, 265000, 0,
-                "b02e84a993d88568417536240e970c4b809126fd",
-				"277d39267403965a7a192474794a29bac6760a25", "");
-
-		public static final MavenObject XZ = new MavenObject(
-                "xz", "org/tukaani", "xz", "1.0",
-                95000, 120000, 0,
-                "ecff5cb8b1189514c9d1d8d68eb77ac372e000c9",
-				"f95e32a5d2dd8da643c4419814415b9704312993", "");
-
-		public static final MavenObject SEL_JAVA = new MavenObject(
-				"selenium-java", "org/seleniumhq/selenium", "selenium-java",
-				"2.28.0", 984098, 0, 0,
-				"7606286989ac9cb942cc206d975ffe187c18d605", "4ede08d293dc153989a337cd0d31d26421433af5", "");
-
-		public static final MavenObject SEL_API = new MavenObject(
-				"selenium-api", "org/seleniumhq/selenium", "selenium-api",
-				"2.28.0", 984098, 0, 0,
-				"c4044c40fff65cd25135a5f443638a2b1ccaeac5", "35fc6ec0804ae32b16a56627e69bdcb69995c515", "");
-
-		public static final MavenObject SEL_REMOTE = new MavenObject(
-				"selenium-remote-driver", "org/seleniumhq/selenium",
-				"selenium-remote-driver", "2.28.0", 984098, 0, 0,
-				"c67f97cd94e02afec92b0ac881844febb4fc90be", "51a9c30de3c8c203cb7a474a10842443005a5fb4", "");
-		public static final MavenObject SEL_SUPPORT = new MavenObject(
-				"selenium-support", "org/seleniumhq/selenium",
-				"selenium-support", "2.28.0", 984098, 0, 0,
-				"caf68d6310425f583bc592c08e43066b35eb94f6", "ce3831a601f5f50fda2f4604decde409b6c735a7", "");
-		public static final MavenObject SEL_FF = new MavenObject(
-				"selenium-firefox-driver", "org/seleniumhq/selenium",
-				"selenium-firefox-driver", "2.28.0", 984098, 0, 0,
-				"a7c34e45dba39e65467b900aa67611aaa039692d", "aa8cd5fb49ca75a53d5b143406ea3d81ab3eddfd", "");
-
-		public static final MavenObject GUAVA = new MavenObject("guava",
-				"com/google/guava", "guava", "12.0", 984098, 0, 0,
-				"5bc66dd95b79db1e437eb08adba124a3e4088dc0", "f8b98e61865bed3c39b978ee3bf5c7fb990c4032", "");
-
-		public static final MavenObject JSON = new MavenObject("json",
-				"org/json", "json", "20080701", 984098, 0, 0,
-				"d652f102185530c93b66158b1859f35d45687258", "71bd54221e701df9d112bf9ba2918e13b0671f3a", "");
-
-		public static final MavenObject COMMONS_EXEC = new MavenObject(
-				"commons-exec", "org/apache/commons", "commons-exec", "1.1",
-				984098, 0, 0, "07dfdf16fade726000564386825ed6d911a44ba1", "f60bea898e18b308099862e8634d589b06a8b0be",
-				"");
-
-		public static final MavenObject HTTPCORE = new MavenObject("httpcore",
-				"org/apache/httpcomponents", "httpcore", "4.2.1", 984098, 0, 0,
-				"2d503272bf0a8b5f92d64db78b4ba9abbaccc6fd", "3f6caf5334fa83607b82e2f32dd128a9d8a0ea5e", "");
-		
-		public static final MavenObject HTTPMIME = new MavenObject("httpmime",
-				"org/apache/httpcomponents", "httpmime", "4.2.1", 984098, 0, 0,
-				"7c772bace9aa31a728c39a88c6ff66a7cd177e89", "", "4e453843ae47f1c2d70e2eb2c13c037de4b614c4");
-		
-		public static final MavenObject HTTPCLIENT = new MavenObject(
-				"httpclient", "org/apache/httpcomponents", "httpclient",
-				"4.2.1", 984098, 0, 0,
-				"b69bd03af60bf487b3ae1209a644ecac587bf6fc", "6b27312b9c28b59aaeb6c21f3490045690c703d3", "");
-		public static final MavenObject COMMONS_LOGGING = new MavenObject(
-				"commons-logging", "commons-logging", "commons-logging",
-				"1.1.1", 984098, 0, 0,
-				"5043bfebc3db072ed80fbd362e7caf00e885d8ae", "f3f156cbff0e0fb0d64bfce31a352cce4a33bc19", "");
-		
-		public final String name;
-		public final String group;
-		public final String artifact;
-		public final String version;
-		public final int approxLibraryLen;
-		public final int approxSourcesLen;
-		public final int approxJavadocLen;
-		public final String librarySHA1;
-		public final String sourcesSHA1;
-		public final String javadocSHA1;
-
-		private MavenObject(String name, String group, String artifact, String version,
-				int approxLibraryLen, int approxSourcesLen, int approxJavadocLen,
-				String librarySHA1, String sourcesSHA1, String javadocSHA1) {
-			this.name = name;
-			this.group = group;
-			this.artifact = artifact;
-			this.version = version;
-			this.approxLibraryLen = approxLibraryLen;
-			this.approxSourcesLen = approxSourcesLen;
-			this.approxJavadocLen = approxJavadocLen;
-			this.librarySHA1 = librarySHA1;
-			this.sourcesSHA1 = sourcesSHA1;
-			this.javadocSHA1 = javadocSHA1;
-		}
-
-		private String getRepositoryPath(String jar) {
-			return group + "/" + artifact + "/" + version + "/" + artifact + "-" + version + jar
-					+ ".jar";
-		}
-
-		private File getLocalFile(String basePath, String jar) {
-			return new File(basePath, artifact + "-" + version + jar + ".jar");
-		}
-
-		private String getSHA1(String jar) {
-			if (jar.equals("")) {
-				return librarySHA1;
-			} else if (jar.equals("-sources")) {
-				return sourcesSHA1;
-			} else if (jar.equals("-javadoc")) {
-				return javadocSHA1;
-			}
-			return librarySHA1;
-		}
-
-		private int getApproximateLength(String jar) {
-			if (jar.equals("")) {
-				return approxLibraryLen;
-			} else if (jar.equals("-sources")) {
-				return approxSourcesLen;
-			} else if (jar.equals("-javadoc")) {
-				return approxJavadocLen;
-			}
-			return approxLibraryLen;
-		}
-
-		@Override
-		public String toString() {
-			return name;
-		}
-	}
-}
diff --git a/src/main/java/com/gitblit/build/BuildGhPages.java b/src/main/java/com/gitblit/build/BuildGhPages.java
deleted file mode 100644
index 5982ac3..0000000
--- a/src/main/java/com/gitblit/build/BuildGhPages.java
+++ /dev/null
@@ -1,259 +0,0 @@
-/*
- * Copyright 2012 gitblit.com.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package com.gitblit.build;
-
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.IOException;
-import java.io.InputStream;
-import java.text.MessageFormat;
-import java.util.ArrayList;
-import java.util.List;
-import java.util.Set;
-import java.util.TreeSet;
-
-import org.eclipse.jgit.api.errors.ConcurrentRefUpdateException;
-import org.eclipse.jgit.api.errors.JGitInternalException;
-import org.eclipse.jgit.dircache.DirCache;
-import org.eclipse.jgit.dircache.DirCacheBuilder;
-import org.eclipse.jgit.dircache.DirCacheEntry;
-import org.eclipse.jgit.internal.JGitText;
-import org.eclipse.jgit.lib.CommitBuilder;
-import org.eclipse.jgit.lib.Constants;
-import org.eclipse.jgit.lib.FileMode;
-import org.eclipse.jgit.lib.ObjectId;
-import org.eclipse.jgit.lib.ObjectInserter;
-import org.eclipse.jgit.lib.PersonIdent;
-import org.eclipse.jgit.lib.RefUpdate;
-import org.eclipse.jgit.lib.RefUpdate.Result;
-import org.eclipse.jgit.lib.Repository;
-import org.eclipse.jgit.lib.RepositoryCache.FileKey;
-import org.eclipse.jgit.revwalk.RevCommit;
-import org.eclipse.jgit.revwalk.RevWalk;
-import org.eclipse.jgit.storage.file.FileRepository;
-import org.eclipse.jgit.treewalk.CanonicalTreeParser;
-import org.eclipse.jgit.treewalk.TreeWalk;
-import org.eclipse.jgit.util.FS;
-
-import com.beust.jcommander.JCommander;
-import com.beust.jcommander.Parameter;
-import com.beust.jcommander.ParameterException;
-import com.beust.jcommander.Parameters;
-import com.gitblit.models.RefModel;
-import com.gitblit.utils.JGitUtils;
-import com.gitblit.utils.StringUtils;
-
-/**
- * Creates or updates a gh-pages branch with the specified content.
- * 
- * @author James Moger
- * 
- */
-public class BuildGhPages {
-
-	public static void main(String[] args) {
-		Params params = new Params();
-		JCommander jc = new JCommander(params);
-		try {
-			jc.parse(args);
-		} catch (ParameterException t) {
-			System.err.println(t.getMessage());
-			jc.usage();
-		}
-
-		File source = new File(params.sourceFolder);
-		String ghpages = "refs/heads/gh-pages";
-		try {			
-			File gitDir = FileKey.resolve(new File(params.repositoryFolder), FS.DETECTED);
-			Repository repository = new FileRepository(gitDir);
-
-			RefModel issuesBranch = JGitUtils.getPagesBranch(repository);
-			if (issuesBranch == null) {
-				JGitUtils.createOrphanBranch(repository, "gh-pages", null);
-			}
-
-			System.out.println("Updating gh-pages branch...");
-			ObjectId headId = repository.resolve(ghpages + "^{commit}");
-			ObjectInserter odi = repository.newObjectInserter();
-			try {
-				// Create the in-memory index of the new/updated issue.
-				DirCache index = createIndex(repository, headId, source, params.obliterate);
-				ObjectId indexTreeId = index.writeTree(odi);
-
-				// Create a commit object
-				PersonIdent author = new PersonIdent("Gitblit", "gitblit@localhost");
-				CommitBuilder commit = new CommitBuilder();
-				commit.setAuthor(author);
-				commit.setCommitter(author);
-				commit.setEncoding(Constants.CHARACTER_ENCODING);
-				commit.setMessage("updated pages");
-				commit.setParentId(headId);
-				commit.setTreeId(indexTreeId);
-
-				// Insert the commit into the repository
-				ObjectId commitId = odi.insert(commit);
-				odi.flush();
-
-				RevWalk revWalk = new RevWalk(repository);
-				try {
-					RevCommit revCommit = revWalk.parseCommit(commitId);
-					RefUpdate ru = repository.updateRef(ghpages);
-					ru.setNewObjectId(commitId);
-					ru.setExpectedOldObjectId(headId);
-					ru.setRefLogMessage("commit: " + revCommit.getShortMessage(), false);
-					Result rc = ru.forceUpdate();
-					switch (rc) {
-					case NEW:
-					case FORCED:
-					case FAST_FORWARD:
-						break;
-					case REJECTED:
-					case LOCK_FAILURE:
-						throw new ConcurrentRefUpdateException(JGitText.get().couldNotLockHEAD,
-								ru.getRef(), rc);
-					default:
-						throw new JGitInternalException(MessageFormat.format(
-								JGitText.get().updatingRefFailed, ghpages, commitId.toString(), rc));
-					}
-				} finally {
-					revWalk.release();
-				}
-			} finally {
-				odi.release();
-			}
-			System.out.println("gh-pages updated.");
-		} catch (Throwable t) {
-			t.printStackTrace();
-		}
-	}
-
-	/**
-	 * Creates an in-memory index of the issue change.
-	 * 
-	 * @param repo
-	 * @param headId
-	 * @param sourceFolder
-	 * @param obliterate
-	 *            if true the source folder tree is used as the new tree for
-	 *            gh-pages and non-existent files are considered deleted
-	 * @return an in-memory index
-	 * @throws IOException
-	 */
-	private static DirCache createIndex(Repository repo, ObjectId headId, File sourceFolder,
-			boolean obliterate) throws IOException {
-
-		DirCache inCoreIndex = DirCache.newInCore();
-		DirCacheBuilder dcBuilder = inCoreIndex.builder();
-		ObjectInserter inserter = repo.newObjectInserter();
-
-		try {
-			// Add all files to the temporary index
-			Set<String> ignorePaths = new TreeSet<String>();
-			List<File> files = listFiles(sourceFolder);
-			for (File file : files) {
-				// create an index entry for the file
-				final DirCacheEntry dcEntry = new DirCacheEntry(StringUtils.getRelativePath(
-						sourceFolder.getPath(), file.getPath()));
-				dcEntry.setLength(file.length());
-				dcEntry.setLastModified(file.lastModified());
-				dcEntry.setFileMode(FileMode.REGULAR_FILE);
-
-				// add this entry to the ignore paths set
-				ignorePaths.add(dcEntry.getPathString());
-
-				// insert object
-				InputStream inputStream = new FileInputStream(file);
-				try {
-					dcEntry.setObjectId(inserter.insert(Constants.OBJ_BLOB, file.length(),
-							inputStream));
-				} finally {
-					inputStream.close();
-				}
-
-				// add to temporary in-core index
-				dcBuilder.add(dcEntry);
-			}
-
-			if (!obliterate) {
-				// Traverse HEAD to add all other paths
-				TreeWalk treeWalk = new TreeWalk(repo);
-				int hIdx = -1;
-				if (headId != null)
-					hIdx = treeWalk.addTree(new RevWalk(repo).parseTree(headId));
-				treeWalk.setRecursive(true);
-
-				while (treeWalk.next()) {
-					String path = treeWalk.getPathString();
-					CanonicalTreeParser hTree = null;
-					if (hIdx != -1)
-						hTree = treeWalk.getTree(hIdx, CanonicalTreeParser.class);
-					if (!ignorePaths.contains(path)) {
-						// add entries from HEAD for all other paths
-						if (hTree != null) {
-							// create a new DirCacheEntry with data retrieved
-							// from
-							// HEAD
-							final DirCacheEntry dcEntry = new DirCacheEntry(path);
-							dcEntry.setObjectId(hTree.getEntryObjectId());
-							dcEntry.setFileMode(hTree.getEntryFileMode());
-
-							// add to temporary in-core index
-							dcBuilder.add(dcEntry);
-						}
-					}
-				}
-
-				// release the treewalk
-				treeWalk.release();
-			}
-			
-			// finish temporary in-core index used for this commit
-			dcBuilder.finish();
-		} finally {
-			inserter.release();
-		}
-		return inCoreIndex;
-	}
-
-	private static List<File> listFiles(File folder) {
-		List<File> files = new ArrayList<File>();
-		for (File file : folder.listFiles()) {
-			if (file.isDirectory()) {
-				files.addAll(listFiles(file));
-			} else {
-				files.add(file);
-			}
-		}
-		return files;
-	}
-
-	/**
-	 * JCommander Parameters class for BuildGhPages.
-	 */
-	@Parameters(separators = " ")
-	private static class Params {
-
-		@Parameter(names = { "--sourceFolder" }, description = "Source folder for pages", required = true)
-		public String sourceFolder;
-
-		@Parameter(names = { "--repository" }, description = "Repository folder", required = true)
-		public String repositoryFolder;
-
-		@Parameter(names = { "--obliterate" }, description = "Replace gh-pages tree with only the content in your sourcefolder")
-		public boolean obliterate;
-
-	}
-}
diff --git a/src/main/java/com/gitblit/build/BuildSite.java b/src/main/java/com/gitblit/build/BuildSite.java
deleted file mode 100644
index efff5a3..0000000
--- a/src/main/java/com/gitblit/build/BuildSite.java
+++ /dev/null
@@ -1,385 +0,0 @@
-/*
- * Copyright 2011 gitblit.com.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package com.gitblit.build;
-
-import java.io.BufferedReader;
-import java.io.File;
-import java.io.FileOutputStream;
-import java.io.FileReader;
-import java.io.FilenameFilter;
-import java.io.OutputStreamWriter;
-import java.nio.charset.Charset;
-import java.text.MessageFormat;
-import java.text.ParseException;
-import java.text.SimpleDateFormat;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.Date;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.Vector;
-
-import com.beust.jcommander.JCommander;
-import com.beust.jcommander.Parameter;
-import com.beust.jcommander.ParameterException;
-import com.beust.jcommander.Parameters;
-import com.gitblit.Constants;
-import com.gitblit.utils.FileUtils;
-import com.gitblit.utils.MarkdownUtils;
-import com.gitblit.utils.StringUtils;
-
-/**
- * Builds the web site or deployment documentation from Markdown source files.
- * 
- * All Markdown source files must have the .mkd extension.
- * 
- * Natural string sort order of the Markdown source filenames is the order of
- * page links. "##_" prefixes are used to control the sort order.
- * 
- * @author James Moger
- * 
- */
-public class BuildSite {
-
-	private static final String SPACE_DELIMITED = "SPACE-DELIMITED";
-
-	private static final String CASE_SENSITIVE = "CASE-SENSITIVE";
-
-	private static final String RESTART_REQUIRED = "RESTART REQUIRED";
-
-	private static final String SINCE = "SINCE";
-
-	public static void main(String... args) {
-		Params params = new Params();
-		JCommander jc = new JCommander(params);
-		try {
-			jc.parse(args);
-		} catch (ParameterException t) {
-			usage(jc, t);
-		}
-
-		File sourceFolder = new File(params.sourceFolder);
-		File destinationFolder = new File(params.outputFolder);
-		File[] markdownFiles = sourceFolder.listFiles(new FilenameFilter() {
-
-			@Override
-			public boolean accept(File dir, String name) {
-				return name.toLowerCase().endsWith(".mkd");
-			}
-		});
-		Arrays.sort(markdownFiles);
-
-		Map<String, String> aliasMap = new HashMap<String, String>();
-		for (String alias : params.aliases) {
-			String[] values = alias.split("=");
-			aliasMap.put(values[0], values[1]);
-		}
-
-		System.out.println(MessageFormat.format("Generating site from {0} Markdown Docs in {1} ",
-				markdownFiles.length, sourceFolder.getAbsolutePath()));
-
-		String htmlHeader = FileUtils.readContent(new File(params.pageHeader), "\n");
-
-		String htmlAdSnippet = null;
-		if (!StringUtils.isEmpty(params.adSnippet)) {
-			File snippet = new File(params.adSnippet);
-			if (snippet.exists()) {
-				htmlAdSnippet = FileUtils.readContent(snippet, "\n");
-			}
-		}
-		String htmlFooter = FileUtils.readContent(new File(params.pageFooter), "\n");
-		final String date = new SimpleDateFormat("yyyy-MM-dd").format(new Date());
-		final String footer = MessageFormat.format(htmlFooter, "generated " + date);
-		for (File file : markdownFiles) {
-			String documentName = getDocumentName(file);
-			if (params.skips.contains(documentName)) {
-				continue;
-			}
-			try {
-				String links = createLinks(file, markdownFiles, aliasMap, params.skips);
-				String header = MessageFormat.format(htmlHeader, Constants.FULL_NAME, links);
-				if (!StringUtils.isEmpty(params.analyticsSnippet)) {
-					File snippet = new File(params.analyticsSnippet);
-					if (snippet.exists()) {
-						String htmlSnippet = FileUtils.readContent(snippet, "\n");
-						header = header.replace("<!-- ANALYTICS -->", htmlSnippet);
-					}
-				}
-
-				String fileName = documentName + ".html";
-				System.out.println(MessageFormat.format("  {0} => {1}", file.getName(), fileName));
-				String rawContent = FileUtils.readContent(file, "\n");
-				String markdownContent = rawContent;
-
-				Map<String, List<String>> nomarkdownMap = new HashMap<String, List<String>>();
-
-				// extract sections marked as no-markdown
-				int nmd = 0;
-				for (String token : params.nomarkdown) {
-					StringBuilder strippedContent = new StringBuilder();
-
-					String nomarkdownKey = "%NOMARKDOWN" + nmd + "%";
-					String[] kv = token.split(":", 2);
-					String beginToken = kv[0];
-					String endToken = kv[1];
-
-					// strip nomarkdown chunks from markdown and cache them
-					List<String> chunks = new Vector<String>();
-					int beginCode = 0;
-					int endCode = 0;
-					while ((beginCode = markdownContent.indexOf(beginToken, endCode)) > -1) {
-						if (endCode == 0) {
-							strippedContent.append(markdownContent.substring(0, beginCode));
-						} else {
-							strippedContent.append(markdownContent.substring(endCode, beginCode));
-						}
-						strippedContent.append(nomarkdownKey);
-						endCode = markdownContent.indexOf(endToken, beginCode);
-						chunks.add(markdownContent.substring(beginCode, endCode));
-						nomarkdownMap.put(nomarkdownKey, chunks);
-					}
-
-					// get remainder of text
-					if (endCode < markdownContent.length()) {
-						strippedContent.append(markdownContent.substring(endCode,
-								markdownContent.length()));
-					}
-					markdownContent = strippedContent.toString();
-					nmd++;
-				}
-
-				// transform markdown to html
-				String content = transformMarkdown(markdownContent.toString());
-
-				// reinsert nomarkdown chunks
-				for (Map.Entry<String, List<String>> nomarkdown : nomarkdownMap.entrySet()) {
-					for (String chunk : nomarkdown.getValue()) {
-						content = content.replaceFirst(nomarkdown.getKey(), chunk);
-					}
-				}
-
-				for (String token : params.substitutions) {
-					String[] kv = token.split("=", 2);
-					content = content.replace(kv[0], kv[1]);
-				}
-				for (String token : params.regex) {
-					String[] kv = token.split("!!!", 2);
-					content = content.replaceAll(kv[0], kv[1]);
-				}
-				for (String alias : params.properties) {
-					String[] kv = alias.split("=", 2);
-					String loadedContent = generatePropertiesContent(new File(kv[1]));
-					content = content.replace(kv[0], loadedContent);
-				}
-				for (String alias : params.loads) {
-					String[] kv = alias.split("=", 2);
-					String loadedContent = FileUtils.readContent(new File(kv[1]), "\n");
-					loadedContent = StringUtils.escapeForHtml(loadedContent, false);
-					loadedContent = StringUtils.breakLinesForHtml(loadedContent);
-					content = content.replace(kv[0], loadedContent);
-				}
-				OutputStreamWriter writer = new OutputStreamWriter(new FileOutputStream(new File(
-						destinationFolder, fileName)), Charset.forName("UTF-8"));
-				writer.write(header);
-				if (!StringUtils.isEmpty(htmlAdSnippet)) {
-					writer.write(htmlAdSnippet);
-				}
-				writer.write(content);
-				writer.write(footer);
-				writer.close();
-			} catch (Throwable t) {
-				System.err.println("Failed to transform " + file.getName());
-				t.printStackTrace();
-			}
-		}
-	}
-
-	private static String getDocumentName(File file) {
-		String displayName = file.getName().substring(0, file.getName().lastIndexOf('.'))
-				.toLowerCase();
-		int underscore = displayName.indexOf('_') + 1;
-		if (underscore > -1) {
-			// trim leading ##_ which is to control display order
-			return displayName.substring(underscore);
-		}
-		return displayName;
-	}
-
-	private static String createLinks(File currentFile, File[] markdownFiles,
-			Map<String, String> aliasMap, List<String> skips) {
-		String linkPattern = "<li><a href=''{0}''>{1}</a></li>";
-		String currentLinkPattern = "<li class=''active''><a href=''{0}''>{1}</a></li>";
-		StringBuilder sb = new StringBuilder();
-		for (File file : markdownFiles) {
-			String documentName = getDocumentName(file);
-			if (!skips.contains(documentName)) {
-				String displayName = documentName;
-				if (aliasMap.containsKey(documentName)) {
-					displayName = aliasMap.get(documentName);
-				} else {
-					displayName = displayName.replace('_', ' ');
-				}
-				String fileName = documentName + ".html";
-				if (currentFile.getName().equals(file.getName())) {
-					sb.append(MessageFormat.format(currentLinkPattern, fileName, displayName));
-				} else {
-					sb.append(MessageFormat.format(linkPattern, fileName, displayName));
-				}
-			}
-		}
-		sb.setLength(sb.length() - 3);
-		sb.trimToSize();
-		return sb.toString();
-	}
-
-	private static String generatePropertiesContent(File propertiesFile) throws Exception {
-		// Read the current Gitblit properties
-		BufferedReader propertiesReader = new BufferedReader(new FileReader(propertiesFile));
-
-		Vector<Setting> settings = new Vector<Setting>();
-		List<String> comments = new ArrayList<String>();
-		String line = null;
-		while ((line = propertiesReader.readLine()) != null) {
-			if (line.length() == 0) {
-				Setting s = new Setting("", "", comments);
-				settings.add(s);
-				comments.clear();
-			} else {
-				if (line.charAt(0) == '#') {
-					comments.add(line.substring(1).trim());
-				} else {
-					String[] kvp = line.split("=", 2);
-					String key = kvp[0].trim();
-					Setting s = new Setting(key, kvp[1].trim(), comments);
-					settings.add(s);
-					comments.clear();
-				}
-			}
-		}
-		propertiesReader.close();
-
-		StringBuilder sb = new StringBuilder();
-		for (Setting setting : settings) {
-			for (String comment : setting.comments) {
-				if (comment.contains(SINCE) || comment.contains(RESTART_REQUIRED)
-						|| comment.contains(CASE_SENSITIVE) || comment.contains(SPACE_DELIMITED)) {
-					sb.append(MessageFormat.format(
-							"<span style=\"color:#004000;\"># <i>{0}</i></span>",
-							transformMarkdown(comment)));
-				} else {
-					sb.append(MessageFormat.format("<span style=\"color:#004000;\"># {0}</span>",
-							transformMarkdown(comment)));
-				}
-				sb.append("<br/>\n");
-			}
-			if (!StringUtils.isEmpty(setting.name)) {
-				sb.append(MessageFormat
-						.format("<span style=\"color:#000080;\">{0}</span> = <span style=\"color:#800000;\">{1}</span>",
-								setting.name, StringUtils.escapeForHtml(setting.value, false)));
-			}
-			sb.append("<br/>\n");
-		}
-
-		return sb.toString();
-	}
-
-	private static String transformMarkdown(String comment) throws ParseException {
-		String md = MarkdownUtils.transformMarkdown(comment);
-		if (md.startsWith("<p>")) {
-			md = md.substring(3);
-		}
-		if (md.endsWith("</p>")) {
-			md = md.substring(0, md.length() - 4);
-		}
-		return md;
-	}
-
-	private static void usage(JCommander jc, ParameterException t) {
-		System.out.println(Constants.getGitBlitVersion());
-		System.out.println();
-		if (t != null) {
-			System.out.println(t.getMessage());
-			System.out.println();
-		}
-		if (jc != null) {
-			jc.usage();
-		}
-		System.exit(0);
-	}
-
-	/**
-	 * Setting represents a setting with its comments from the properties file.
-	 */
-	private static class Setting {
-		final String name;
-		final String value;
-		final List<String> comments;
-
-		Setting(String name, String value, List<String> comments) {
-			this.name = name;
-			this.value = value;
-			this.comments = new ArrayList<String>(comments);
-		}
-	}
-
-	/**
-	 * JCommander Parameters class for BuildSite.
-	 */
-	@Parameters(separators = " ")
-	private static class Params {
-
-		@Parameter(names = { "--sourceFolder" }, description = "Markdown Source Folder", required = true)
-		public String sourceFolder;
-
-		@Parameter(names = { "--outputFolder" }, description = "HTML Ouptut Folder", required = true)
-		public String outputFolder;
-
-		@Parameter(names = { "--pageHeader" }, description = "Page Header HTML Snippet", required = true)
-		public String pageHeader;
-
-		@Parameter(names = { "--pageFooter" }, description = "Page Footer HTML Snippet", required = true)
-		public String pageFooter;
-
-		@Parameter(names = { "--adSnippet" }, description = "Ad HTML Snippet", required = false)
-		public String adSnippet;
-
-		@Parameter(names = { "--analyticsSnippet" }, description = "Analytics HTML Snippet", required = false)
-		public String analyticsSnippet;
-
-		@Parameter(names = { "--skip" }, description = "Filename to skip", required = false)
-		public List<String> skips = new ArrayList<String>();
-
-		@Parameter(names = { "--alias" }, description = "Filename=Linkname aliases", required = false)
-		public List<String> aliases = new ArrayList<String>();
-
-		@Parameter(names = { "--substitute" }, description = "%TOKEN%=value", required = false)
-		public List<String> substitutions = new ArrayList<String>();
-
-		@Parameter(names = { "--load" }, description = "%TOKEN%=filename", required = false)
-		public List<String> loads = new ArrayList<String>();
-
-		@Parameter(names = { "--properties" }, description = "%TOKEN%=filename", required = false)
-		public List<String> properties = new ArrayList<String>();
-
-		@Parameter(names = { "--nomarkdown" }, description = "%STARTTOKEN%:%ENDTOKEN%", required = false)
-		public List<String> nomarkdown = new ArrayList<String>();
-
-		@Parameter(names = { "--regex" }, description = "searchPattern!!!replacePattern", required = false)
-		public List<String> regex = new ArrayList<String>();
-
-	}
-}
diff --git a/src/main/java/com/gitblit/build/BuildThumbnails.java b/src/main/java/com/gitblit/build/BuildThumbnails.java
deleted file mode 100644
index fe06c6c..0000000
--- a/src/main/java/com/gitblit/build/BuildThumbnails.java
+++ /dev/null
@@ -1,162 +0,0 @@
-/*
- * Copyright 2011 gitblit.com.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package com.gitblit.build;
-
-import java.awt.Dimension;
-import java.awt.Image;
-import java.awt.image.BufferedImage;
-import java.io.File;
-import java.io.FileOutputStream;
-import java.io.FilenameFilter;
-import java.io.IOException;
-import java.text.MessageFormat;
-import java.util.Iterator;
-
-import javax.imageio.ImageIO;
-import javax.imageio.ImageReader;
-import javax.imageio.stream.ImageInputStream;
-
-import com.beust.jcommander.JCommander;
-import com.beust.jcommander.Parameter;
-import com.beust.jcommander.ParameterException;
-import com.beust.jcommander.Parameters;
-
-/**
- * Generates PNG thumbnails of the PNG images from the specified source folder.
- * 
- * @author James Moger
- * 
- */
-public class BuildThumbnails {
-
-	public static void main(String[] args) {
-		Params params = new Params();
-		JCommander jc = new JCommander(params);
-		try {
-			jc.parse(args);
-		} catch (ParameterException t) {
-			System.err.println(t.getMessage());
-			jc.usage();
-		}
-		createImageThumbnail(params.sourceFolder, params.destinationFolder, params.maximumDimension);
-	}
-
-	/**
-	 * Generates thumbnails from all PNG images in the source folder and saves
-	 * them to the destination folder.
-	 * 
-	 * @param sourceFolder
-	 * @param destinationFolder
-	 * @param maxDimension
-	 *            the maximum height or width of the image.
-	 */
-	public static void createImageThumbnail(String sourceFolder, String destinationFolder,
-			int maxDimension) {
-		if (maxDimension <= 0) {
-			return;
-		}
-		File source = new File(sourceFolder);
-		File destination = new File(destinationFolder);
-		destination.mkdirs();
-		File[] sourceFiles = source.listFiles(new FilenameFilter() {
-			@Override
-			public boolean accept(File dir, String name) {
-				return name.toLowerCase().endsWith(".png");
-			}
-		});
-
-		for (File sourceFile : sourceFiles) {
-			File destinationFile = new File(destination, sourceFile.getName());
-			try {
-				Dimension sz = getImageDimensions(sourceFile);
-				int w = 0;
-				int h = 0;
-				if (sz.width > maxDimension) {
-					// Scale to Width
-					w = maxDimension;
-					float f = maxDimension;
-					// normalize height
-					h = (int) ((f / sz.width) * sz.height);
-				} else if (sz.height > maxDimension) {
-					// Scale to Height
-					h = maxDimension;
-					float f = maxDimension;
-					// normalize width
-					w = (int) ((f / sz.height) * sz.width);
-				}
-				System.out.println(MessageFormat.format(
-						"Generating thumbnail for {0} as ({1,number,#}, {2,number,#})",
-						sourceFile.getName(), w, h));
-				BufferedImage image = ImageIO.read(sourceFile);
-				Image scaledImage = image.getScaledInstance(w, h, BufferedImage.SCALE_SMOOTH);
-				BufferedImage destImage = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
-				destImage.createGraphics().drawImage(scaledImage, 0, 0, null);
-				FileOutputStream fos = new FileOutputStream(destinationFile);
-				ImageIO.write(destImage, "png", fos);
-				fos.flush();
-				fos.getFD().sync();
-				fos.close();
-			} catch (Throwable t) {
-				t.printStackTrace();
-			}
-		}
-	}
-
-	/**
-	 * Return the dimensions of the specified image file.
-	 * 
-	 * @param file
-	 * @return dimensions of the image
-	 * @throws IOException
-	 */
-	public static Dimension getImageDimensions(File file) throws IOException {
-		ImageInputStream in = ImageIO.createImageInputStream(file);
-		try {
-			final Iterator<ImageReader> readers = ImageIO.getImageReaders(in);
-			if (readers.hasNext()) {
-				ImageReader reader = readers.next();
-				try {
-					reader.setInput(in);
-					return new Dimension(reader.getWidth(0), reader.getHeight(0));
-				} finally {
-					reader.dispose();
-				}
-			}
-		} finally {
-			if (in != null) {
-				in.close();
-			}
-		}
-		return null;
-	}
-
-	/**
-	 * JCommander Parameters class for BuildThumbnails.
-	 */
-	@Parameters(separators = " ")
-	private static class Params {
-
-		@Parameter(names = { "--sourceFolder" }, description = "Source folder for raw images", required = true)
-		public String sourceFolder;
-
-		@Parameter(names = { "--destinationFolder" }, description = "Destination folder for thumbnails", required = true)
-		public String destinationFolder;
-
-		@Parameter(names = { "--maximumDimension" }, description = "Maximum width or height for thumbnail", required = true)
-		public int maximumDimension;
-
-	}
-}
diff --git a/src/main/java/com/gitblit/build/BuildWebXml.java b/src/main/java/com/gitblit/build/BuildWebXml.java
deleted file mode 100644
index 49a12ab..0000000
--- a/src/main/java/com/gitblit/build/BuildWebXml.java
+++ /dev/null
@@ -1,160 +0,0 @@
-/*
- * Copyright 2011 gitblit.com.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package com.gitblit.build;
-
-import java.io.BufferedReader;
-import java.io.File;
-import java.io.FileOutputStream;
-import java.io.FileReader;
-import java.text.MessageFormat;
-import java.util.ArrayList;
-import java.util.List;
-import java.util.Vector;
-
-import com.beust.jcommander.JCommander;
-import com.beust.jcommander.Parameter;
-import com.beust.jcommander.ParameterException;
-import com.beust.jcommander.Parameters;
-import com.gitblit.Keys;
-import com.gitblit.utils.StringUtils;
-
-/**
- * Builds the Gitblit WAR web.xml file by merging the Gitblit GO web.xml file
- * with the gitblit.properties comments, settings, and values.
- * 
- * @author James Moger
- * 
- */
-public class BuildWebXml {
-	private static final String PARAMS = "<!-- PARAMS -->";
-
-	private static final String[] STRIP_TOKENS = { "<!-- STRIP", "STRIP -->" };
-
-	private static final String COMMENT_PATTERN = "\n\t<!-- {0} -->";
-
-	private static final String PARAM_PATTERN = "\n\t<context-param>\n\t\t<param-name>{0}</param-name>\n\t\t<param-value>{1}</param-value>\n\t</context-param>\n";
-
-	public static void main(String[] args) throws Exception {
-		Params params = new Params();
-		JCommander jc = new JCommander(params);
-		try {
-			jc.parse(args);
-		} catch (ParameterException t) {
-			System.err.println(t.getMessage());
-			jc.usage();
-		}
-		generateWebXml(params);
-	}
-
-	private static void generateWebXml(Params params) throws Exception {
-		StringBuilder parameters = new StringBuilder();
-		// Read the current Gitblit properties
-		if (params.propertiesFile != null) {
-			BufferedReader propertiesReader = new BufferedReader(new FileReader(new File(
-					params.propertiesFile)));
-
-			Vector<Setting> settings = new Vector<Setting>();
-			List<String> comments = new ArrayList<String>();
-			String line = null;
-			while ((line = propertiesReader.readLine()) != null) {
-				if (line.length() == 0) {
-					comments.clear();
-				} else {
-					if (line.charAt(0) == '#') {
-						if (line.length() > 1) {
-							comments.add(line.substring(1).trim());
-						}
-					} else {
-						String[] kvp = line.split("=", 2);
-						String key = kvp[0].trim();
-						if (!skipKey(key)) {
-							Setting s = new Setting(key, kvp[1].trim(), comments);
-							settings.add(s);
-						}
-						comments.clear();
-					}
-				}
-			}
-			propertiesReader.close();
-
-			for (Setting setting : settings) {
-				for (String comment : setting.comments) {
-					parameters.append(MessageFormat.format(COMMENT_PATTERN, comment));
-				}
-				parameters.append(MessageFormat.format(PARAM_PATTERN, setting.name,
-						StringUtils.escapeForHtml(setting.value, false)));
-			}
-		}
-		// Read the prototype web.xml file
-		File webxml = new File(params.sourceFile);
-		char[] buffer = new char[(int) webxml.length()];
-		FileReader webxmlReader = new FileReader(webxml);
-		webxmlReader.read(buffer);
-		webxmlReader.close();
-		String webXmlContent = new String(buffer);
-
-		// Insert the Gitblit properties into the prototype web.xml
-		for (String stripToken : STRIP_TOKENS) {
-			webXmlContent = webXmlContent.replace(stripToken, "");
-		}
-		int idx = webXmlContent.indexOf(PARAMS);
-		StringBuilder sb = new StringBuilder();
-		sb.append(webXmlContent.substring(0, idx));
-		sb.append(parameters.toString());
-		sb.append(webXmlContent.substring(idx + PARAMS.length()));
-
-		// Save the merged web.xml to the war build folder
-		FileOutputStream os = new FileOutputStream(new File(params.destinationFile), false);
-		os.write(sb.toString().getBytes());
-		os.close();
-	}
-
-	private static boolean skipKey(String key) {
-		return key.startsWith(Keys.server._ROOT);
-	}
-
-	/**
-	 * Setting represents a setting and its comments from the properties file.
-	 */
-	private static class Setting {
-		final String name;
-		final String value;
-		final List<String> comments;
-
-		Setting(String name, String value, List<String> comments) {
-			this.name = name;
-			this.value = value;
-			this.comments = new ArrayList<String>(comments);
-		}
-	}
-
-	/**
-	 * JCommander Parameters class for BuildWebXml.
-	 */
-	@Parameters(separators = " ")
-	private static class Params {
-
-		@Parameter(names = { "--sourceFile" }, description = "Source web.xml file", required = true)
-		public String sourceFile;
-
-		@Parameter(names = { "--propertiesFile" }, description = "Properties settings file")
-		public String propertiesFile;
-
-		@Parameter(names = { "--destinationFile" }, description = "Destination web.xml file", required = true)
-		public String destinationFile;
-		
-	}
-}

--
Gitblit v1.9.1