summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2011-05-04 17:35:49 -0400
committerJames Moger <james.moger@gitblit.com>2011-05-04 17:35:49 -0400
commitcf9550d8df51d927c63176675280d69b86e7a6e2 (patch)
tree9974201aae08af4e46275465eff30793e13262aa /build.xml
parentb5b4026628c50ffdfa3ceeb93badb613cdca18eb (diff)
downloadgitblit-cf9550d8df51d927c63176675280d69b86e7a6e2.tar.gz
gitblit-cf9550d8df51d927c63176675280d69b86e7a6e2.zip
Build infrastructure improvements. Setting to show remote branches.
The JGit team is now publishing 0.12.1 artifacts on the Eclipse Maven site. Yeah! That was the last missing piece for a slick Git:Blit deployment. The build has been reworked to download from Eclipse and to also download source and javadoc jars for setting up a development environment. Made the log4j pattern configurable by operating system. Moved Markdown utils to their own class since I need StringUtils for Build and that introduced a chicken-and-egg scenario.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml13
1 files changed, 1 insertions, 12 deletions
diff --git a/build.xml b/build.xml
index 08de19b2..caaf3437 100644
--- a/build.xml
+++ b/build.xml
@@ -23,9 +23,6 @@
<!-- Compile Project -->
<path id="master-classpath">
- <fileset dir="${basedir}/lib">
- <include name="*.jar" />
- </fileset>
<fileset dir="${basedir}/ext">
<include name="*.jar" />
</fileset>
@@ -40,16 +37,13 @@
<!-- Build jar -->
<delete file="${project.jar}" />
- <jar index="true" jarfile="${project.jar}">
+ <jar jarfile="${project.jar}">
<fileset dir="${project.build.dir}">
<include name="**/*" />
</fileset>
<manifest>
<attribute name="Main-Class" value="${project.mainclass}" />
</manifest>
- <indexjars>
- <fileset dir="${basedir}/lib" />
- </indexjars>
</jar>
<!-- Delete the deploy folder -->
@@ -58,11 +52,6 @@
<!-- Create deployment folder structure -->
<mkdir dir="${basedir}/deploy" />
<copy todir="${basedir}/deploy" file="${project.jar}" />
- <copy todir="${basedir}/deploy/lib">
- <fileset dir="${basedir}/lib">
- <include name="**/*.jar" />
- </fileset>
- </copy>
<copy todir="${basedir}/deploy">
<fileset dir="${basedir}/service">
<include name="**/*" />