how would I perform set intersection or disjunction with filesets?

2005-07-13 Thread Craeg Strong
Hello: Here is a fun question: does anyone have any ideas as to how one might go about producing a fileset that represents the INTERSECTION of two filesets? That is, it will include only those files that are in both filesets A and B. Another question: how might one produce a fileset that include

RE:

2005-07-13 Thread Alan Char
Ooops. Thanks. I saw the "No" in the "Required" column and misread it to mean default "false". --Alan > -Original Message- > From: Darin Swanson [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 13, 2005 4:54 PM > To: Ant Users List > Subject: Re: > > > But you need to set inheritA

Re:

2005-07-13 Thread Darin Swanson
But you need to set inheritAll to false...it defaults to true for the ant task HTH Darins "Alan Char" <[EMAIL PROTECTED]> 07/13/2005 12:37 PM Please respond to "Ant Users List" To cc Subject I am using Ant 1.6.2 and it looks to me like inheritAll="false" isn't working for the tas

user@ant.apache.org

2005-07-13 Thread Alan Char
I am using Ant 1.6.2 and it looks to me like inheritAll="false" isn't working for the task. I have a build.xml: and a sub/build.xml: When I run ant, I see this: Buildfile: build.xml default: [echoproperties] #Ant properties [e

Re: Queries on using ANT

2005-07-13 Thread Ivan Ivanov
Karanukar, > 2) Can I publish an HTML page on a web page using > ANT? I dealt with publishing HTML pages via Ant last week and I am now having great success using WebDAV and the WebDAV Ant tasks from Jakarta Slide project[1]. You can check also this thread[2] for some references and nice links on

Re: Queries on using ANT

2005-07-13 Thread Juergen Hermann
On Wed, 13 Jul 2005 17:56:29 +0530, Karunakar Chatla wrote: >How can we update that web page from ANT? Is there any task defined to >perform this action? A combination of

uptodate not working

2005-07-13 Thread Neeraj Kumar
h.isUpToDate2: ${h.isUpToDate2} h.isUpToDate3: ${h.isUpToDate3} Both the uptodate are checking for the same thing. But no matter what I do the value of isUpToDate3 is never true even when the value of isUpToDate2 is true. What am I missing here? I believe the value of isUp

RE: Must-see for all ant beginners

2005-07-13 Thread Paul Munsey \(pmunsey\)
Karunakar, I'm using Ant against .dsw files using the tag and the "msdev" executable. For example: This will build all projects for the Release configuration (I think :)) Paul -Original Message- From: Karunakar Chatla [mailto:[EMAIL PROTECTED] Sen

Re: Doing patch builds

2005-07-13 Thread S I
Thank you. I have some ideas now. :) Original Message Follows From: Uri <[EMAIL PROTECTED]> Reply-To: "Ant Users List" To: Ant Users List Subject: Re: Doing patch builds Date: Wed, 13 Jul 2005 15:19:48 +0400 MIME-Version: 1.0 Received: from mail.apache.org ([209.237.227.199]) by MC6-F2.

Remote execution of build files

2005-07-13 Thread Srikrishna_Parthasarathy
I don't know if this is possible to do with ant. a) I would like to execute remote build files from windows XP.For eg I would like to start JBOSS and Weblogic .I have looked into AntServer and RemoteAnt . b) Is there a way for ant after executing the Antserver task to get the command prompt to

Re: ejbjar, jar, and manifests with JBoss

2005-07-13 Thread Andrew Perez-Lopez
Conor, Thanks very much for your prompt reply. I figured it out - it was just a silly mistake on my part. I didn't end my manifest file with a blank line, so it didn't recognize the final attribute, which in my case was the Class-Path. I added a newline after that, and it worked without iss

RE: Queries on using ANT

2005-07-13 Thread Rebhan, Gilbert
Hi, you may have a 'Baseversion' of your webpage containing all the fields/parts that will change enclosed between @ and @ and work with filter then copy the generated page to your webserver that's what we do here see -> AntManual / CoreTasks / Filter Appending new lines to your Baseversion/w

Re: ejbjar, jar, and manifests with JBoss

2005-07-13 Thread Conor MacNeill
Andrew, It's a while since I worked on the ejb tasks, so forgive me if I'm a little hazy. Andrew Perez-Lopez wrote: > I got the manifest attribute to work, but not completely. It seems to > ignore my Class-Path attribute. When I use the jar task with the same > manifest attribute, it creates a

Re: ejbjar, jar, and manifests with JBoss

2005-07-13 Thread Andrew Perez-Lopez
Conor, Thanks very much for your help. I'm half-way there now... I got the manifest attribute to work, but not completely. It seems to ignore my Class-Path attribute. When I use the jar task with the same manifest attribute, it creates a jar with the proper attributes, but the ejbjar task

Re: storing optional (ftp) task jar dependency under my project instead of under /ant/lib

2005-07-13 Thread Peter Reilly
Asle Pedersen wrote: Ok, in that case alt.3 is not very attractive afterall. I don't know if it is just me but I prefer do embed this type of behaviour in the build.xml and project itself. Indeed, I would argue that the whole idea of spitting the optional ant tasks into a relatively large n

Re: Queries on using ANT

2005-07-13 Thread Karunakar Chatla
Thank You James. - Original Message - From: "James Fuller" <[EMAIL PROTECTED]> To: "Ant Users List" Sent: Wednesday, July 13, 2005 6:03 PM Subject: Re: Queries on using ANT > Karunakar Chatla wrote: > > >Thanks for the help. > > > >For 2nd query : > > > >We need to build some of the c

Re: Queries on using ANT

2005-07-13 Thread James Fuller
Karunakar Chatla wrote: >Thanks for the help. > >For 2nd query : > >We need to build some of the components in the system and publish the build >information, like, Release Number, Build Number, Components affected on a >web page. There exists a web page and we have to update that web page each >ti

RE: taskdef & log4j (precompiled jsp & jasper)

2005-07-13 Thread Keith Hatton
Do you simply need a that points to a directory where your properties file is? The you have defined consists solely of jar files. Hope this helps Keith -Original Message- From: Prasad Iyer [mailto:[EMAIL PROTECTED] Sent: 13 July 2005 12:01 To: user@ant.apache.org Subject: taskdef & lo

Re: Queries on using ANT

2005-07-13 Thread Karunakar Chatla
Thanks for the help. For 2nd query : We need to build some of the components in the system and publish the build information, like, Release Number, Build Number, Components affected on a web page. There exists a web page and we have to update that web page each time the build is performed. Also h

Re: Queries on using ANT

2005-07-13 Thread James Fuller
Karunakar Chatla wrote: >Hi, > >I am currently using ANT in my project. I have following queries - >1) I have the requirement to build a C++ project( .dsw file ). >How can I do this, as I didn't find any direct support in ANT Task list? > > check out the useful set of tasks bundled with the

Re: Queries on using ANT

2005-07-13 Thread Jeffrey E Care
1) I'm not familiar with ".dsw" files, but you can always use the task to execute a native program from Ant. 2) Possible, yes. Without specific information about your context & environment it's not possible for anyone on this list to determine if it's feasible in your particular case. -- Jeff

Re: Doing patch builds

2005-07-13 Thread Uri
Hi you can try using tags in cvs. so builder will work like this: 1 step: find all in cvs that doesn't match your last saved tag (result should be updated files) and update them 2 step: tag all with new tag and save it Hi I was hoping someone could put me on the right track please. I finall

taskdef & log4j (precompiled jsp & jasper)

2005-07-13 Thread Prasad Iyer
Can I add the log4j configuration to the custom task I have defined task for precompiling the jsp files but it gives the error no appender found I tried to put log4j.properties files in all the possible class folders but doesn't work. [jasper2] log4j:WARN No appenders could be found for logge

Re: Must-see for all ant beginners

2005-07-13 Thread Karunakar Chatla
Hi, Can anybody help me in this regard? I am currently using ANT in my project. I have following queries - 1) I have the requirement to build a C++ project( .dsw file ). How can I do this, as I didn't find any direct support in ANT Task list? 2) Can I publish an HTML page on a web page using