| | |
| | | documentation @ http://gitblit.github.io/moxie
|
| | | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
| | | -->
|
| | | <property name="moxie.version" value="0.9.1" />
|
| | | <property name="moxie.version" value="0.9.2" />
|
| | | <property name="moxie.url" value="http://gitblit.github.io/moxie/maven" />
|
| | | <property name="moxie.jar" value="moxie-toolkit-${moxie.version}.jar" />
|
| | | <property name="moxie.dir" value="${user.home}/.moxie" />
|
| | |
| | | <property name="go.dir" value="${project.outputDirectory}/go" />
|
| | | <delete dir="${go.dir}" />
|
| | |
|
| | | <local name="webinf" />
|
| | | <property name="webinf" value="${project.compileOutputDirectory}/WEB-INF" />
|
| | |
|
| | | <prepareDataDirectory toDir="${go.dir}/data" />
|
| | | |
| | | <!-- Copy the web.xml from the prototype web.xml -->
|
| | | <copy todir="${webinf}" overwrite="true">
|
| | | <fileset file="${project.src.dir}/WEB-INF/web.xml" />
|
| | | <filterset>
|
| | | <filter token="gb.version" value="${project.version}" />
|
| | | </filterset>
|
| | | </copy>
|
| | |
|
| | | <!-- Build jar -->
|
| | | <mx:jar destfile="${go.dir}/gitblit.jar" includeresources="true">
|
| | |
| | | <!-- Prepare the data directory -->
|
| | | <prepareDataDirectory toDir="${webinf}/data" />
|
| | |
|
| | | <!-- Build the WAR web.xml from the prototype web.xml -->
|
| | | <mx:webxml sourcefile="${project.src.dir}/WEB-INF/web.xml" destfile="${webinf}/web.xml">
|
| | | <replace token="@gb.version@" value="${project.version}" />
|
| | | </mx:webxml>
|
| | | <!-- Copy the web.xml from the prototype web.xml -->
|
| | | <copy todir="${webinf}" overwrite="true">
|
| | | <fileset file="${project.src.dir}/WEB-INF/web.xml" />
|
| | | <filterset>
|
| | | <filter token="gb.version" value="${project.version}" />
|
| | | </filterset>
|
| | | </copy>
|
| | |
|
| | | <!-- Gitblit jar -->
|
| | | <mx:jar destfile="${webinf}/lib/gitblit.jar" includeresources="false" />
|
| | |
| | | <link name="Gitblit GO (Windows)" src="${gc.url}gitblit-${project.releaseVersion}.zip" />
|
| | | <link name="Gitblit GO (Linux/OSX)" src="${gc.url}gitblit-${project.releaseVersion}.tar.gz" />
|
| | | <link name="Gitblit WAR" src="${gc.url}gitblit-${project.releaseVersion}.war" />
|
| | | <divider />
|
| | | <link name="Gitblit GO (Docker)" src="https://registry.hub.docker.com/u/jmoger/gitblit/" />
|
| | | <divider />
|
| | | <link name="Gitblit Manager" src="${gc.url}manager-${project.releaseVersion}.zip" />
|
| | | <link name="Federation Client" src="${gc.url}fedclient-${project.releaseVersion}.zip" />
|
| | |
| | | <include name="subgit.groovy" />
|
| | | </fileset>
|
| | | </copy>
|
| | | <mkdir dir="@{toDir}/gitignore" />
|
| | | <copy todir="@{toDir}/gitignore">
|
| | | <fileset dir="${project.distrib.dir}/data/gitignore"> |
| | | <include name="*.gitignore" />
|
| | | </fileset>
|
| | | </copy>
|
| | | </sequential>
|
| | | </macrodef>
|
| | |
|