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
war target: -- View this message in context: http://ant.1045680.n5.nabble.com/Create-WEB-INF-lib-based-on-path-structure-tp1350348p5713953.html Sent from the Ant - Users mailing list archive at

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

2008-01-26 Thread Peter Reilly
annoying "feature" of the War task. > > > > Does anybody know the good workaround solution for " in does not > accept path-like structures" problem? Is it possible to somehow specify with > a path-like structure a set of JARs (from various disk locatio

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

2008-01-25 Thread Wszeb
various disk locations) to be placed in WAR ? There is also a similar thread on ant-dev list: http://www.nabble.com/Lib-in-War-Does-Not-Accept-Path-like-structures-to14654383.html -- View this message in context: http://www.nabble.com/Create-WEB-INF-lib-based-on-path-structure-tp11513835p15096305.html Sent from the Ant - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

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

Create WEB-INF/lib based on path-structure

2007-07-09 Thread hezjing
Hi I have a path structure containing a list of JARs, saved at the shared repository. How can I inlucde these JARs into WEB-INF/lib when creating a WAR file, without copying the JARs into local project directory? -- Hez - To