Browse Source

Explicitly copy support files, in anticipation of this function being

removed from the javac task.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267649 13f79535-47bb-0310-9956-ffa450edef68
master
Sam Ruby 25 years ago
parent
commit
08789e9fda
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      build.xml

+ 6
- 0
build.xml View File

@@ -51,6 +51,7 @@
<!-- =================================================================== -->
<target name="compile" depends="prepare,check_for_optional_packages">
<mkdir dir="${build.classes}"/>

<javac srcdir="${src.dir}"
destdir="${build.classes}"
classpath="${classpath}"
@@ -60,6 +61,11 @@
<exclude name="**/Script.java" unless="bsf.present" />
<exclude name="**/NetRexxC.java" unless="netrexx.present" />
</javac>
<copydir src="${src.dir}" dest="${build.classes}">
<include name="**/defaultManifest.mf" />
<include name="**/*.properties" />
</copydir>
</target>

<!-- =================================================================== -->


Loading…
Cancel
Save