RE: Create WEB-INF/lib based on path-structure

2013-03-13 Thread Martin Gainty
Subject: Re: Create WEB-INF/lib based on path-structure > > i went through a bunch of posts and did not find the answer. Finally i > solved it as explained below. my way is possibly a little verbose but it > does the job. SO my goal was to be able to include my libs(.jar files) &

Re: Create WEB-INF/lib based on path-structure

2013-03-13 Thread sthakor
i went through a bunch of posts and did not find the answer. Finally i solved it as explained below. my way is possibly a little verbose but it does the job. SO my goal was to be able to include my libs(.jar files) which are in some third party dir referenced by $3rdParty-libs, into the WEB-INF/

Re: Create WEB-INF/lib based on path-structure

2008-01-26 Thread Peter Reilly
Just use the task. Peter On Jan 25, 2008 8:37 PM, Wszeb <[EMAIL PROTECTED]> wrote: > > > > DATACOM - Diego-2 wrote: > > > > Hmmm, the guy said he had a "path structure", not a "fileset" (look > > subject of the message). Unfortunately, if he cannot change his path > > into a fileset, I think he

Re: Create WEB-INF/lib based on path-structure

2008-01-25 Thread Wszeb
DATACOM - Diego-2 wrote: > > Hmmm, the guy said he had a "path structure", not a "fileset" (look > subject of the message). Unfortunately, if he cannot change his path > into a fileset, I think he is in trouble. I had exactly the same > problem with the War task. > > All these bugs seem to b

Re: Create WEB-INF/lib based on path-structure

2007-07-10 Thread DATACOM - Diego
Hmmm, the guy said he had a "path structure", not a "fileset" (look subject of the message). Unfortunately, if he cannot change his path into a fileset, I think he is in trouble. I had exactly the same problem with the War task. All these bugs seem to be related with this problem (does anyone

Re: Create WEB-INF/lib based on path-structure

2007-07-10 Thread Steve Loughran
hezjing wrote: Hi Prashant Thanks for the WAR task description. If I have a path-like structure called "base.path", you should know that app servers will only add WEB-INF/lib/*.jar to their path, not **/*.jar. I normally just copy everything I need to a single directory; you c

Re: Create WEB-INF/lib based on path-structure

2007-07-10 Thread Prashant Reddy
On Tue, 2007-07-10 at 12:25 +0530, Prashant Reddy wrote: > >> Based on http://ant.apache.org/manual/CoreTypes/fileset.html, how > do > >> we know the element supports "refid" attribute? > The relevant documentation seem to be here : http://ant.apache.org/manual/dirtasks.html#patterns "We said t

Re: Create WEB-INF/lib based on path-structure

2007-07-09 Thread Prashant Reddy
On Tue, 2007-07-10 at 14:29 +0800, hezjing wrote: >> Based on http://ant.apache.org/manual/CoreTypes/fileset.html, how do >> we know the element supports "refid" attribute? You mean the 'id' attribute, right ? Yes you are correct the documentation of fileset does not specify support for id attrib

Re: Create WEB-INF/lib based on path-structure

2007-07-09 Thread hezjing
Yes, I should have use the modern IDE to see the available attributes. Based on http://ant.apache.org/manual/CoreTypes/fileset.html, how do we know the element supports "refid" attribute? When run with , Ant complaints that the "base.path doesn't denote a zipfileset or a fileset" Did I miss out

Re: Create WEB-INF/lib based on path-structure

2007-07-09 Thread Prashant Reddy
On Tue, 2007-07-10 at 14:06 +0800, hezjing wrote: > Hi Prashant > > Thanks for the WAR task description. > > If I have a path-like structure called "base.path", > > > > > > > > How can I referencing "base.path" directly in task or it's > nested element? WAR task specifies in t

Re: Create WEB-INF/lib based on path-structure

2007-07-09 Thread hezjing
Hi Prashant Thanks for the WAR task description. If I have a path-like structure called "base.path", How can I referencing "base.path" directly in task or it's nested element? On 7/10/07, Prashant Reddy <[EMAIL PROTECTED]> wrote: Take a look at 'war' task at : http://ant.apach

Re: Create WEB-INF/lib based on path-structure

2007-07-09 Thread Prashant Reddy
Take a look at 'war' task at : http://ant.apache.org/manual/CoreTasks/war.html Examples given in this page should address your concern. On Tue, 2007-07-10 at 10:21 +0800, hezjing wrote: > Hi > > I have a path structure containing a list of JARs, saved at the shared > repository. > > How can I i