1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: Install only *.js files from scripts/ folder
Author: Fab Stz <fabtz-it@yahoo.fr>
Forwarded: https://github.com/w3c/css-validator/pull/456
--- a/build.xml
+++ b/build.xml
@@ -148,7 +148,7 @@
<target name="war" depends="build, buildhtml" description="Creates the webapp module">
<delete file="${war.file}"/>
- <war warfile="${war.file}" webxml="web.xml" basedir="." includes="*html*,favicon.ico,images/**,style/**,scripts/**,tabtastic/**" excludes="html,css-validator.*">
+ <war warfile="${war.file}" webxml="web.xml" basedir="." includes="*html*,favicon.ico,images/**,style/**,scripts/**.js,tabtastic/**" excludes="html,css-validator.*">
<classes dir="build"/>
<lib dir="lib">
<exclude name="*servlet*.jar"/>
|