• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

NX: Inserting Directories Into Jar With Ant

 
Ranch Hand
Posts: 79
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Greetings,
I am trying to use ant to build my submission jar file. It works fine except that it is not creating my docs directory in the jar file. It is using the base path of the jar and making it relative from there.

The problem with this is that "docs", which is a subdirectory in my project, is not being created in the jar; it's files and subdirectories are being placed in the base of the jar.
How can I tell ant to create the docs dir and place all of my docs fileset in there?
TIA,
Jason
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Instead of writing

Try this ...

[ January 17, 2004: Message edited by: Roel De Meester ]
[ January 17, 2004: Message edited by: Roel De Meester ]
 
Jason Mowat
Ranch Hand
Posts: 79
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Roel,
Thanks. That works like a charm!
Cheers,
Jason
 
reply
    Bookmark Topic Watch Topic
  • New Topic