浏览代码

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" />

正在加载...
取消
保存