Browse Source

Copy static files to classes dir.

tags/v1.3.1
Gustavo Henrique 10 years ago
parent
commit
1e2c114fca
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      build.xml

+ 7
- 0
build.xml View File

@@ -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…
Cancel
Save