From efb1137546de9a32bfa23aeda9edd7dc4f597d05 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Thu, 27 Sep 2012 09:35:54 -0400 Subject: [PATCH] Added Hamcrest-Core (JUnit) and Jakarta-Regexp (Lucene Memory) --- build.xml | 259 +++++++++++++++++++++++++++++++++++++++++++++------ 1 files changed, 225 insertions(+), 34 deletions(-) diff --git a/build.xml b/build.xml index 4d5ce6e..5ea612a 100644 --- a/build.xml +++ b/build.xml @@ -16,6 +16,7 @@ <property name="project.war.dir" value="${basedir}/war" /> <property name="project.site.dir" value="${basedir}/site" /> <property name="project.resources.dir" value="${basedir}/resources" /> + <property name="project.express.dir" value="${basedir}/express" /> <available property="hasBuildProps" file="${basedir}/build.properties"/> <!-- @@ -87,6 +88,7 @@ <property name="fedclient.zipfile" value="fedclient-${gb.version}.zip" /> <property name="manager.zipfile" value="manager-${gb.version}.zip" /> <property name="gbapi.zipfile" value="gbapi-${gb.version}.zip" /> + <property name="express.zipfile" value="express-${gb.version}.zip" /> </target> @@ -101,7 +103,7 @@ <copy todir="${basedir}" overwrite="false"> <fileset dir="${basedir}/distrib"> <include name="gitblit.properties" /> - <include name="users.properties" /> + <include name="users.conf" /> </fileset> </copy> @@ -115,12 +117,21 @@ <delete dir="${project.build.dir}" /> <mkdir dir="${project.build.dir}" /> - <javac debug="true" srcdir="${basedir}/src" destdir="${project.build.dir}"> + <javac debug="true" srcdir="${basedir}/src" destdir="${project.build.dir}" includeantruntime="false"> <include name="com/gitblit/build/Build.java" /> <include name="com/gitblit/Constants.java" /> <include name="com/gitblit/utils/StringUtils.java" /> </javac> - <java classpath="${project.build.dir}" classname="com.gitblit.build.Build" /> + + <java classpath="${project.build.dir}" classname="com.gitblit.build.Build"> + <syspropertyset id="proxy.properties"> + <propertyref prefix="java.net.useSystemProxies"/> + <propertyref prefix="http."/> + <propertyref prefix="https."/> + <propertyref prefix="ftp."/> + <propertyref prefix="socksProxy"/> + </syspropertyset> + </java> <!-- Compile Project --> <path id="master-classpath"> @@ -129,7 +140,7 @@ </fileset> <pathelement path="${project.build.dir}" /> </path> - <javac debug="true" destdir="${project.build.dir}" failonerror="false"> + <javac debug="true" destdir="${project.build.dir}" failonerror="false" includeantruntime="false"> <src path="${basedir}/src" /> <classpath refid="master-classpath" /> </javac> @@ -157,6 +168,7 @@ <fileset dir="${basedir}/distrib"> <include name="**/*" /> <exclude name="federation.properties" /> + <exclude name="openshift.mkd" /> </fileset> <fileset dir="${basedir}"> <include name="LICENSE" /> @@ -178,11 +190,33 @@ </manifest> </jar> + <!-- Gitblit library dependencies --> + <mkdir dir="${project.deploy.dir}/ext"/> + <copy todir="${project.deploy.dir}/ext"> + <fileset dir="${basedir}/ext"> + <exclude name="junit*.jar" /> + <exclude name="commons-net*.jar" /> + <exclude name="*-sources.jar" /> + <exclude name="*-javadoc.jar" /> + </fileset> + </copy> + <!-- Build the docs for the deploy --> <antcall target="buildDocs" inheritall="true" inheritrefs="true"> <param name="docs.output.dir" value="${project.deploy.dir}/docs" /> </antcall> + <!-- Copy the supported Groovy hook scripts --> + <mkdir dir="${project.deploy.dir}/groovy" /> + <copy todir="${project.deploy.dir}/groovy"> + <fileset dir="${basedir}/groovy"> + <include name="sendmail.groovy" /> + <include name="jenkins.groovy" /> + <include name="protect-refs.groovy" /> + <include name="localclone.groovy" /> + </fileset> + </copy> + <!-- Create Zip deployment --> <zip destfile="${distribution.zipfile}"> <fileset dir="${project.deploy.dir}"> @@ -204,9 +238,8 @@ <copy todir="${docs.output.dir}"> <!-- Copy selected Gitblit resources --> <fileset dir="${project.resources.dir}"> - <include name="bootstrap.140.css" /> - <include name="bootstrap.gb.css" /> - <include name="markdown.css" /> + <include name="bootstrap/**/*" /> + <include name="gitblit.css" /> <include name="gitblt_25_white.png" /> <include name="gitblt-favicon.png" /> <include name="lock_go_16x16.png" /> @@ -223,6 +256,7 @@ <!-- Copy Doc images --> <fileset dir="${basedir}/docs"> <include name="*.png" /> + <include name="*.gif" /> </fileset> </copy> @@ -280,6 +314,9 @@ <arg value="%API%=${gbapi.zipfile}" /> <arg value="--substitute" /> + <arg value="%EXPRESS%=${express.zipfile}" /> + + <arg value="--substitute" /> <arg value="%BUILDDATE%=${gb.versionDate}" /> <arg value="--substitute" /> @@ -313,12 +350,12 @@ <echo>Building Gitblit WAR ${gb.version}</echo> - <delete dir="${project.war.dir}" /> + <delete dir="${project.war.dir}" /> - <!-- Copy web.xml and users.properties to WEB-INF --> + <!-- Copy web.xml and users.conf to WEB-INF --> <copy todir="${project.war.dir}/WEB-INF"> <fileset dir="${basedir}/distrib"> - <include name="users.properties" /> + <include name="users.conf" /> </fileset> <fileset dir="${basedir}/src/WEB-INF"> <include name="web.xml" /> @@ -337,7 +374,18 @@ <antcall target="buildDocs" inheritall="true" inheritrefs="true"> <param name="docs.output.dir" value="${project.war.dir}/WEB-INF/docs" /> </antcall> - + + <!-- Copy the supported Groovy hook scripts --> + <mkdir dir="${project.war.dir}/WEB-INF/groovy" /> + <copy todir="${project.war.dir}/WEB-INF/groovy"> + <fileset dir="${basedir}/groovy"> + <include name="sendmail.groovy" /> + <include name="jenkins.groovy" /> + <include name="protect-refs.groovy" /> + <include name="localclone.groovy" /> + </fileset> + </copy> + <!-- Build the WAR web.xml from the prototype web.xml and gitblit.properties --> <java classpath="${project.build.dir}" classname="com.gitblit.build.BuildWebXml"> <classpath refid="master-classpath" /> @@ -369,6 +417,7 @@ <exclude name="jetty*.jar" /> <exclude name="junit*.jar" /> <exclude name="servlet*.jar" /> + <exclude name="javax.servlet*.jar" /> </fileset> </copy> @@ -376,10 +425,11 @@ <mkdir dir="${project.war.dir}/WEB-INF/classes"/> <copy todir="${project.war.dir}/WEB-INF/classes"> <fileset dir="${project.build.dir}"> - <exclude name="WEB-INF/web.xml" /> + <exclude name="WEB-INF/" /> <exclude name="com/gitblit/tests/" /> <exclude name="com/gitblit/build/**" /> <exclude name="com/gitblit/client/**" /> + <exclude name="com/gitblit/AddIndexedBranch*.class" /> <exclude name="com/gitblit/GitBlitServer*.class" /> <exclude name="com/gitblit/Launcher*.class" /> <exclude name="com/gitblit/MakeCertificate*.class" /> @@ -409,6 +459,7 @@ <exclude name="org.slf4j." /> <exclude name="com.beust." /> <exclude name="com.google." /> + <exclude name="com.unboundid." /> </classfilter> <classpath refid="master-classpath" /> <manifest> @@ -434,17 +485,117 @@ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + Build a Gitblit filesystem for deployment to RedHat OpenShif Expresst + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + --> + <target name="buildExpress" depends="compile" description="Build exploded WAR file suitable for deployment to OpenShift Express"> + <echo>Building Gitblit Express for RedHat OpenShift ${gb.version}</echo> + + <delete dir="${project.express.dir}" /> + + <!-- Create the OpenShift filesystem --> + <property name="deployments.root" value="${project.express.dir}/deployments/ROOT.war"/> + <mkdir dir="${deployments.root}" /> + <touch file="${project.express.dir}/deployments/ROOT.war.dodeploy" /> + + <!-- Copy the Gitblit OpenShift readme file --> + <copy tofile="${project.express.dir}/README.gitblit" + file="${basedir}/distrib/openshift.mkd"/> + + <!-- Copy LICENSE and NOTICE to WEB-INF --> + <copy todir="${deployments.root}/WEB-INF"> + <fileset dir="${basedir}"> + <include name="LICENSE" /> + <include name="NOTICE" /> + </fileset> + </copy> + + <!-- Copy gitblit.properties as reference.properties --> + <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" /> + <include name="protect-refs.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"> + <classpath refid="master-classpath" /> + + <arg value="--sourceFile" /> + <arg value="${basedir}/src/WEB-INF/web.xml" /> + + <arg value="--destinationFile" /> + <arg value="${deployments.root}/WEB-INF/web.xml" /> + + <arg value="--propertiesFile" /> + <arg value="${basedir}/distrib/gitblit.properties" /> + </java> + + <!-- Gitblit resources --> + <copy todir="${deployments.root}"> + <fileset dir="${project.resources.dir}"> + <exclude name="thumbs.db" /> + </fileset> + </copy> + + <!-- Gitblit library dependencies --> + <mkdir dir="${deployments.root}/WEB-INF/lib"/> + <copy todir="${deployments.root}/WEB-INF/lib"> + <fileset dir="${basedir}/ext"> + <exclude name="*-sources.jar" /> + <exclude name="*-javadoc.jar" /> + <exclude name="jcommander*.jar" /> + <exclude name="jetty*.jar" /> + <exclude name="junit*.jar" /> + <exclude name="servlet*.jar" /> + <exclude name="javax.servlet*.jar" /> + </fileset> + </copy> + + <!-- Gitblit classes --> + <jar destfile="${deployments.root}/WEB-INF/lib/gitblit-${gb.version}.jar"> + <fileset dir="${project.build.dir}"> + <exclude name="WEB-INF/" /> + <exclude name="com/gitblit/tests/" /> + <exclude name="com/gitblit/build/**" /> + <exclude name="com/gitblit/client/**" /> + <exclude name="com/gitblit/GitBlitServer*.class" /> + <exclude name="com/gitblit/Launcher*.class" /> + <exclude name="com/gitblit/MakeCertificate*.class" /> + </fileset> + </jar> + + <!-- Build Express Zip file --> + <zip destfile="${express.zipfile}"> + <fileset dir="${project.express.dir}" /> + </zip> + + </target> + + + <!-- + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Build the stand-alone, Gitblit Manager ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <target name="buildManager" depends="compile" description="Builds the stand-alone Gitblit Manager"> <echo>Building Gitblit Manager ${gb.version}</echo> - + <genjar jarfile="manager-${gb.version}.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/git-orange-16x16.png" /> <resource file="${basedir}/resources/user_16x16.png" /> + <resource file="${basedir}/resources/users_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" /> @@ -461,7 +612,8 @@ <resource file="${basedir}/resources/commit_merge_16x16.png" /> <resource file="${basedir}/resources/blank.png" /> <resource file="${basedir}/src/com/gitblit/wicket/GitBlitWebApp.properties" /> - + <resource file="${basedir}/src/com/gitblit/wicket/GitBlitWebApp_ja.properties" /> + <class name="com.gitblit.client.GitblitManagerLauncher" /> <classfilter> <exclude name="org.apache." /> @@ -470,6 +622,7 @@ <exclude name="org.slf4j." /> <exclude name="com.beust." /> <exclude name="com.google." /> + <exclude name="com.unboundid." /> </classfilter> <classpath refid="master-classpath" /> <manifest> @@ -479,7 +632,7 @@ <attribute name="Release-Date" value="${gb.versionDate}" /> </manifest> </genjar> - + <!-- Build Manager Zip file --> <zip destfile="${manager.zipfile}"> <fileset dir="${basedir}"> @@ -556,6 +709,9 @@ <include name="rome*.jar" /> <exclude name="rome*-sources.jar" /> <exclude name="rome*-javadoc.jar" /> + <include name="jdom*.jar" /> + <exclude name="jdom*-sources.jar" /> + <exclude name="jdom*-javadoc.jar" /> </fileset> </zip> </target> @@ -576,9 +732,8 @@ <copy todir="${project.site.dir}"> <!-- Copy selected Gitblit resources --> <fileset dir="${project.resources.dir}"> - <include name="bootstrap.140.css" /> - <include name="bootstrap.gb.css" /> - <include name="markdown.css" /> + <include name="bootstrap/**/*" /> + <include name="gitblit.css" /> <include name="gitblt_25_white.png" /> <include name="gitblt-favicon.png" /> <include name="lock_go_16x16.png" /> @@ -595,6 +750,7 @@ <!-- Copy Doc images --> <fileset dir="${basedir}/docs"> <include name="*.png" /> + <include name="*.gif" /> <include name="*.js" /> </fileset> </copy> @@ -683,6 +839,9 @@ <arg value="%API%=${gbapi.zipfile}" /> <arg value="--substitute" /> + <arg value="%EXPRESS%=${express.zipfile}" /> + + <arg value="--substitute" /> <arg value="%BUILDDATE%=${gb.versionDate}" /> <arg value="--substitute" /> @@ -705,30 +864,51 @@ </java> </target> - + <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Compile from source, publish binaries, and build & deploy site ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> - <target name="buildAll" depends="buildGO,buildWAR,buildFederationClient,buildManager,buildApiLibrary,buildSite"> + <target name="buildAll" depends="buildGO,buildWAR,buildExpress,buildFederationClient,buildManager,buildApiLibrary,buildSite"> <!-- Cleanup --> <delete dir="${project.build.dir}" /> <delete dir="${project.war.dir}" /> <delete dir="${project.deploy.dir}" /> + <delete dir="${project.express.dir}" /> </target> - + + <!-- + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + Update the gh-pages branch with the current site + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + --> + <target name="updateGhPages" depends="buildSite"> + <!-- Build gh-pages branch --> + <java classpath="${project.build.dir}" classname="com.gitblit.build.BuildGhPages"> + <classpath refid="master-classpath" /> + <arg value="--sourceFolder" /> + <arg value="${basedir}/site" /> + + <arg value="--repository" /> + <arg value="${basedir}" /> + + <arg value="--obliterate" /> + </java> + </target> + + <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Publish binaries to Google Code ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> - <target name="publishBinaries" depends="buildGO,buildWAR,buildFederationClient,buildManager" description="Publish the Gitblit binaries to Google Code"> - + <target name="publishBinaries" depends="buildGO,buildWAR,buildExpress,buildFederationClient,buildManager,buildApiLibrary" description="Publish the Gitblit binaries to Google Code"> + <echo>Uploading Gitblit ${gb.version} binaries</echo> - + <!-- Upload Gitblit GO ZIP file --> <gcupload username="${googlecode.user}" @@ -738,7 +918,7 @@ targetfilename="gitblit-${gb.version}.zip" summary="Gitblit GO v${gb.version} (standalone, integrated Gitblit server)" labels="Featured, Type-Package, OpSys-All" /> - + <!-- Upload Gitblit WAR file --> <gcupload username="${googlecode.user}" @@ -748,7 +928,7 @@ targetfilename="gitblit-${gb.version}.war" summary="Gitblit WAR v${gb.version} (standard WAR webapp for servlet containers)" labels="Featured, Type-Package, OpSys-All" /> - + <!-- Upload Gitblit FedClient --> <gcupload username="${googlecode.user}" @@ -768,7 +948,7 @@ targetfilename="manager-${gb.version}.zip" summary="Gitblit Manager v${gb.version} (Swing tool to remotely administer a Gitblit server)" labels="Featured, Type-Package, OpSys-All" /> - + <!-- Upload Gitblit API Library --> <gcupload username="${googlecode.user}" @@ -778,19 +958,30 @@ targetfilename="gbapi-${gb.version}.zip" summary="Gitblit API Library v${gb.version} (JSON RPC library to integrate with your software)" labels="Featured, Type-Package, OpSys-All" /> + + <!-- Upload Gitblit Express for RedHat OpenShift --> + <gcupload + username="${googlecode.user}" + password="${googlecode.password}" + projectname="gitblit" + filename="${express.zipfile}" + targetfilename="express-${gb.version}.zip" + summary="Gitblit Express v${gb.version} (run Gitblit on RedHat's OpenShift cloud)" + labels="Featured, Type-Package, OpSys-All" /> + </target> - + <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Publish site to hosting service + Publish site to site hosting service You must add ext/commons-net-1.4.0.jar to your ANT classpath. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> - <target name="publishSite" depends="buildSite" description="Publish the Gitblit site to a webserver (requires ext/commons-net-1.4.0.jar)" > - + <target name="publishSite" depends="buildSite,updateGhPages" description="Publish the Gitblit site to a webserver (requires ext/commons-net-1.4.0.jar)" > + <echo>Uploading Gitblit ${gb.version} website</echo> - + <ftp server="${ftp.server}" userid="${ftp.user}" password="${ftp.password}" @@ -801,7 +992,7 @@ </ftp> </target> - + <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Compile from source, publish binaries, and build & deploy site @@ -813,4 +1004,4 @@ <delete dir="${project.war.dir}" /> <delete dir="${project.deploy.dir}" /> </target> -</project> +</project> -- Gitblit v1.9.1