2013-02-21 15 views

回答

2

該文檔指出默認緩存爲「propertyfile」。它還指出緩存文件的默認名稱是cache.properties

最後,它還提供了一個概述所有默認設置的示例,演示如何更改這些設置。

<copy todir="dest"> 
    <fileset dir="src"> 
     <modified update="true" 
        seldirs="true" 
        cache="propertyfile" 
        algorithm="digest" 
        comparator="equal"> 
      <param name="cache.cachefile"  value="cache.properties"/> 
      <param name="algorithm.algorithm" value="MD5"/> 
     </modified> 
    </fileset> 
</copy> 
+0

啊,「cache.properties」。我錯過了。謝謝! – dfrankow 2013-02-21 20:58:08

相關問題