瀏覽代碼

Merge pull request #106 from gustavohenrique/master

Fix Ant run target by copying resources to output directory
tags/v1.3.1
James Moger 11 年之前
父節點
當前提交
95e1bfe1a9
共有 1 個檔案被更改,包括 7 行新增0 行删除
  1. 7
    0
      build.xml

+ 7
- 0
build.xml 查看文件

@@ -185,6 +185,13 @@
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-->
<target name="run" depends="compile" description="Run Gitblit GO">
<!-- copy static files -->
<copy todir="${basedir}/build/classes" overwrite="false">
<fileset dir="${project.resources.dir}">
<exclude name="thumbs.db" />
<exclude name="*.mkd" />
</fileset>
</copy>
<!-- run the mainclass in a separate JVM -->
<mx:run fork="true" />

Loading…
取消
儲存