AW: java-doc question

2005-07-05 Thread Jan.Materne
The smallest I´d found in my buildfiles is And that should be possible, too: Jan >-Ursprüngliche Nachricht- >Von: Paul Goepfert [mailto:[EMAIL PROTECTED] >Gesendet: Mittwoch, 6. Juli 2005 07:00 >An: Ant User List >Betreff: java-doc question > >What is the correct synt

java-doc question

2005-07-05 Thread Paul Goepfert
What is the correct syntax to produce a java-doc task. I have looked at the javadoc task on Ant's Core-Task webpage. The javadoc task looks too involved foor what I need. All I need is too produce the default javadoc. I once had this done but the file was erased. Any help would be apprecia

Re: Executing junit tests with differing classpaths

2005-07-05 Thread Simon Kitching
On Sun, 2005-06-26 at 12:07 +0200, Stefan Bodewig wrote: > On Sun, 26 Jun 2005, Simon Kitching <[EMAIL PROTECTED]> wrote: > > > Am I right in thinking that the task provides no way for the > > classloader setup in the forked JVM to be tweaked before the test is > > executed? > > Not sure. You c

Re: Property value coming from unknown source

2005-07-05 Thread Chris
Wow. That's it exactly. Thanks. "Darin Swanson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] See https://bugs.eclipse.org/bugs/show_bug.cgi?id=45717 HTH Darins "Chris" <[EMAIL PROTECTED]> Sent by: news <[EMAIL PROTECTED]> 07/05/2005 12:21 PM Please respond to "Ant Users List"

RE: wild card in project.getProperty()

2005-07-05 Thread Juergen Hermann
On Tue, 5 Jul 2005 08:52:11 -0400, Dick, Brian E. wrote: in Ant optional tasks. perfect for a filter file, or loading them into another build script. >PropertySelector in ant-contrib >-Original Message- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Sent: Tuesday, July 05, 2005 4

Re: xmlvalidate question

2005-07-05 Thread Juergen Hermann
On Tue, 5 Jul 2005 16:41:07 +0200, [EMAIL PROTECTED] wrote: >I was wondering about the following: i am using an task with a System Id for my dtd and... it works. >Why is there nothing on the manual about system ids usage? I guess for the same reason there is no Linux or Windows manual in it. ;

Re: ordered fileset or selective filelist

2005-07-05 Thread Juergen Hermann
On Tue, 5 Jul 2005 10:29:34 -0400, Mark Lybarger wrote: > > > > > > > use macrodef (define a macro that conditionally calls subant), and just list the macro calls in order. Ciao, Jürgen - To unsubscribe, e-mail: [EMAIL PR

Re: [antcontrib] post task, HTTP/1.0 401 Authentication requested

2005-07-05 Thread Juergen Hermann
On Tue, 5 Jul 2005 11:29:28 +0200, Rebhan, Gilbert wrote: >i want to use the post task of antcontrib to >kick off a forced build in CruiseControl via JMX interface. >Are there any other similar http post tasks around that >allow authentification ? Hmmm, why use HTTP when you can use JMX? See the

Re: Property value coming from unknown source

2005-07-05 Thread S I
Perhaps you have defined .build.properties or build.properties somewhere? Look for one or both of these files. After the command line these 2 files also supercede your internal peroperties. Steven Original Message Follows From: "Chris" <[EMAIL PROTECTED]> Reply-To: "Chris" <[EMAIL PR

Re: Property value coming from unknown source

2005-07-05 Thread Darin Swanson
See https://bugs.eclipse.org/bugs/show_bug.cgi?id=45717 HTH Darins "Chris" <[EMAIL PROTECTED]> Sent by: news <[EMAIL PROTECTED]> 07/05/2005 12:21 PM Please respond to "Ant Users List" To user@ant.apache.org cc Subject Re: Property value coming from unknown source Nope, that doesn't a

Re: Property value coming from unknown source

2005-07-05 Thread Chris
Nope, that doesn't appear to be it. I went through all the configurations and there isn't any reference to 2.4.1. <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] The highest order for property evaluation in Ant is giving the value via command line -Dname=value In Eclipse you star

RE: ordered fileset or selective filelist

2005-07-05 Thread Dominique Devienne
> From: Mark Lybarger [mailto:[EMAIL PROTECTED] > > a filelist is ordered, a fileset is selective but non-ordered. i'd like to > combine features of each, either an ordered fileset, or a selective > filelist (don't include non-existant files). > > basically, i'm build war's and ear projects from

RE: HTTP tasks

2005-07-05 Thread Brent Bain
The Commons VFS (Virtual File System) might do what you need -- if I remember correctly it will support HTTP. http://jakarta.apache.org/commons/sandbox/vfs/ Brent -Original Message- From: Ivan Ivanov [mailto:[EMAIL PROTECTED] Sent: Friday, July 01, 2005 2:02 PM To: user@ant.apache.org Su

xmlvalidate question

2005-07-05 Thread hind.lwahhabi
'lo guys, I was wondering about the following: i am using an task with a System Id for my dtd and... it works. Why is there nothing on the manual about system ids usage? Cheers. Hind. This message is for the designated recipient only and may contain privileged, proprietary, or otherwise pr

ordered fileset or selective filelist

2005-07-05 Thread Mark Lybarger
a filelist is ordered, a fileset is selective but non-ordered. i'd like to combine features of each, either an ordered fileset, or a selective filelist (don't include non-existant files). in the example build.xml shown here, the default target doesn't work because there is no baz.xml, but the d

RE: wild card in project.getProperty()

2005-07-05 Thread Dick, Brian E.
PropertySelector in ant-contrib -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 05, 2005 4:50 AM To: user@ant.apache.org; user@ant.apache.org Subject: wild card in project.getProperty() Hello gentle people; I was wondering if you can achieve the

RE: wild card in project.getProperty()->fool me

2005-07-05 Thread hind.lwahhabi
mea culpa, forgot to check propertyset in the manual. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tue 7/5/2005 10:50 AM To: user@ant.apache.org; user@ant.apache.org Subject: wild card in project.getProperty() Hello gentle people; I was wondering if you c

[antcontrib] post task, HTTP/1.0 401 Authentication requested

2005-07-05 Thread Rebhan, Gilbert
Hi, i want to use the post task of antcontrib to kick off a forced build in CruiseControl via JMX interface. There is no example in antcontrib docs. Are there any other similar http post tasks around that allow authentification ? Gilbert --

wild card in project.getProperty()

2005-07-05 Thread hind.lwahhabi
Hello gentle people; I was wondering if you can achieve the following using : I would like to retrieve all the properties prefixed with a given string in my project to process them afterward. i.e: get all properties starting with "zos.". How acan you do this with Ant? thanks for any clue. Hava n