Browse Source

Change for pull request #78, building Gitblit-Gerrit JAR with resource prefix

tags/v1.3.0
James Moger 11 years ago
parent
commit
bffa6449bf
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      build.xml

+ 2
- 1
build.xml View File

@@ -994,7 +994,8 @@
<target name="installMaven" depends="compile" description="Install Gitblit JAR as Maven module">
<local name="project.jar" />
<property name="project.jar" value="${project.outputDirectory}/gitblit.jar" />
<mx:jar destfile="${project.jar}" includeresources="true" />
<property name="resourceFolderPrefix" value="" />
<mx:jar destfile="${project.jar}" includeresources="true" resourceFolderPrefix="${resourceFolderPrefix}" />
<exec executable="mvn">
<arg value="install:install-file" />

Loading…
Cancel
Save