소스 검색

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…
취소
저장