You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bu...@apache.org on 2002/08/14 19:19:31 UTC

DO NOT REPLY [Bug 11699] New: - zip Task does not seem to pick up some a file

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11699>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11699

zip Task does not seem to pick up some a file 

           Summary: zip Task does not seem to pick up some a file
           Product: Ant
           Version: 1.5
          Platform: PC
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Core tasks
        AssignedTo: ant-dev@jakarta.apache.org
        ReportedBy: david.brooks@cigna.com


I am having a problem with the zip task in V1.5. I is not picking up a file tha 
t is clearly in the include fileset. The script is not a new one, an we have 
never had a problem with V1.4.1 and before. Here are some details...

target=========================================================================
  <target name="zip-database" if="database.available" depends="zip-program" >
    <echo message="zipping ${DRBDevTools.products.dir}/${data.dir}/
${database.file} to ${release.dir}/${release.name}"/>
    <zip zipfile="${release.dir}/${release.name}" update="true">
      <fileset dir="${DRBDevTools.products.dir}" includes="${data.dir}/
${database.file}"/>
    </zip>
  </target>
target=========================================================================

debug: 1.4.1===================================================================
Setting project property: data.dir -> data
Setting project property: DRBDevTools.products.dir -> e:\DRBDevTools/myProducts
Setting project property: release.name -> drbdatabase.zip
Setting project property: release.dir -> e:\DRBDevTools/myProducts/java/release
Setting project property: database.file -> sample.mdb

Setting project property: database.available -> true

zip-database:
     [echo] zipping e:\DRBDevTools/myProducts/data/sample.mdb to e:\DRBDevTools/
myProducts/java/release/drbdatabase.zip
FileSet: Setup file scanner in dir E:\DRBDevTools\myProducts with patternSet{ in
cludes: [data/sample.mdb] excludes: [] }
      [zip] Updating zip: E:\DRBDevTools\myProducts\java\release\drbdatabase.zip

FileSet: Setup file scanner in dir E:\DRBDevTools\myProducts with patternSet{ in
cludes: [data/sample.mdb] excludes: [] }
FileSet: Setup file scanner in dir E:\DRBDevTools\myproducts\java\code\org\drb\d
atabase with patternSet{ includes: [] excludes: [data/sample.mdb] }
debug: 1.4.1===================================================================

debug: 1.5=====================================================================
Setting project property: data.dir -> data
Setting project property: DRBDevTools.products.dir -> e:\DRBDevTools/myProducts
Setting project property: release.name -> drbdatabase.zip
Setting project property: release.dir -> e:\DRBDevTools/myProducts/java/release
Setting project property: database.file -> sample.mdb

Setting project property: database.available -> true
zip-database:
     [echo] zipping e:\DRBDevTools/myProducts/data/sample.mdb to e:\DRBDevTools/
myProducts/java/release/drbdatabase.zip
fileset: Setup scanner in dir E:\DRBDevTools\myProducts with patternSet{ include
s: [data/sample.mdb] excludes: [] }
      [zip] data\sample.mdb omitted as E:\DRBDevTools\myProducts\java\release\dr
bdatabase.zip is up to date.
debug: 1.5=====================================================================

Notes: 
- The zip file is created by a previous task. I tried this test on an existing 
zip file and no zip file with the same results. 
- I tried update="true" & update="false" with not diff.
- I switch versions of ant by renaming the base directory of the version I want
ex. e:\ant -> e:\ant-1.4.1 and e:\ant-1.5 -> e:\ant and visa/versa

Any help would be appreciated. It is a production script, but we don't have to 
upgrade to 1.5 anytime soon. I was just trying to stay in up-to-date.

Thanks
Dave

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>