我需要指定要排除的特定文件列表,但当我尝试像excludesfile="file1, file2"
这样的东西时,我得到一个执行任务的错误说:
下面是我的代码:C:Users.....DesktoptestProjectproject.build.xml:49: Excludesfile C:Users...... .xmlDesktoptestProjectfile1, file2未找到
<target name="jar" depends="common.jar">
<zip
destfile="${jar.build.dir}/some-jar.jar"
basedir="${base.dir}"
includes="src/**,gradle/**"
excludesfile="file1,file2">
</zip>
</target>
excludesfile
用于指定一个文件,其中包含要在zip
进程中排除的文件列表(每个文件在单独的行上)。要将列表指定为逗号(或空格)分隔的文件,请使用excludes
参数。如:
excludes="file1,file2"