Copy build.properties correctly into WEB-INF/resources.

Users may override with ant -Dbuild.properties.file=my.silly.name, but when it gets copied into WEB-INF/resources, it must be called build.properties
This commit is contained in:
Jim Blake 2014-07-08 12:19:13 -04:00
parent d65cc2b106
commit b2c3ebca42

View file

@ -234,7 +234,7 @@
</copy>
<!-- Copy the build.properties file to the resources directory. -->
<copy todir="${main.resources.dir}" file="${build.properties.file}" />
<copy tofile="${main.resources.dir}/build.properties" file="${build.properties.file}" />
<!-- copy any xml files from source tree to the war directory -->