Re: Tar/Tarfileset broken on Ant 1.3 ?

2001-08-06 Thread Stefan Bodewig
On Mon, 06 Aug 2001, Cedric Berger <[EMAIL PROTECTED]> wrote: > Stefan Bodewig wrote: > >>The include pattern is supposed to be relative to the dir attribute >> > This is not what the example in the documentation shows. Not true, but it is a bit obfuscated (the dir is dist.name/.., so dist.name

RE: Can't get Ant to bootstrap

2001-08-06 Thread Martin Pruefer
Hi! Do you have tools.jar in your classpath when launching ant? Greets Martin > -Original Message- > From: Berin Loritsch [mailto:[EMAIL PROTECTED]] > Sent: Montag, 6. August 2001 17:36 > To: [EMAIL PROTECTED] > Subject: Can't get Ant to bootstrap > > > I am running Sun's JDK 1.3.0_0

Re: Could someone with commit access apply this?

2001-08-06 Thread Stefan Bodewig
On Mon, 06 Aug 2001, Berin Loritsch <[EMAIL PROTECTED]> wrote: > It upgrades Ant Optional tasks to be Xalan 2 compliant and not use > any of Xalan 1's API. We already have TraxLiaison for Xalan2 and XalanLiaison for Xalan 1. I know that Stephane has been working on junitreport to replace it wit

Re: task

2001-08-06 Thread Peter Donald
On Tue, 7 Aug 2001 03:16, Berin Loritsch wrote: > I am trying to use the task with the embedded > element. The problem is that my includes > work, but my excludes don't. > > > > > > > > Should be $$ rather than just $ > >

Re: Can't get Ant to bootstrap

2001-08-06 Thread James Calfee
I have the same problem. Of course setting the java_home and restarting the cygwin shell does not do the trick. However, Jikes will not only do the trick but do it much faster. just set the compiler to "jikes" just prior to the the 'javac' task. With jikes.exe in the current dir you will not h

Re: JUnit tests fail -> build fail

2001-08-06 Thread Berin Loritsch
Klara Ward wrote: > > Just to spam this list even further I'm not sure I tried junitreport with > 1.4 at all. Has anyone else tried and got it to work? I just sent in a patch that would make junitreport use the JAXP 1.1 API for transformations. It _should_ work with JDK 1.4 as well as Xalan 2.

Could someone with commit access apply this?

2001-08-06 Thread Berin Loritsch
It upgrades Ant Optional tasks to be Xalan 2 compliant and not use any of Xalan 1's API. ? ant.diff ? lib/optional/xalan-2.2.0-dev.jar Index: build.xml === RCS file: /home/cvs/jakarta-ant/build.xml,v retrieving revision 1.171 diff -u

task

2001-08-06 Thread Berin Loritsch
I am trying to use the task with the embedded element. The problem is that my includes work, but my excludes don't. I am trying to exclude internal classes from the batch testing, as well as one specific

incremental build using ant

2001-08-06 Thread Ramesh Donnipadu
I know ant can do incremental compilation/build based on time stamp of the surce and class files. But I am not aware whether ant is really smart and can figure out logical dependency among various class files by itself. I am guessing this can be done using ant but we have to tell it using the "de

Re: Tar/Tarfileset broken on Ant 1.3 ?

2001-08-06 Thread Cedric Berger
Hi Stefan: Stefan Bodewig wrote: >There are bugs in Ant 1.3's tarfilest, but what you see is expected >behavior: > >> >> >> >> >> >> >> >> >> > >The include pattern is supposed to be relative to the dir attribute - > This is not what the example in the documentation shows

Re: Tar/Tarfileset broken on Ant 1.3 ?

2001-08-06 Thread Stefan Bodewig
There are bugs in Ant 1.3's tarfilest, but what you see is expected behavior: > > > > > > > > The include pattern is supposed to be relative to the dir attribute - Ant doesn't find any files and therefore assumes the archive is up-to-date. Make that

Re: Tar/Tarfileset broken on Ant 1.3 ?

2001-08-06 Thread Cedric Berger
Conor MacNeill wrote: > Try a recent nightly build. All of this has been fixed, I believe. I don't think so. The documentation has been fixed, but the (buggy) behavior is still the same. Cedric

Re: Can't get Ant to bootstrap

2001-08-06 Thread Ramesh Donnipadu
Hi Berin, It happened to me once. I defined my JAVA_HOME variable to some directory which was only a symbolic link to jdk1.2 directory. When I changed JAV_HOME to actual directory which had jdk1.2, it started working. If you are using symbolic links, try this approach. May be ant does not like s

Can't get Ant to bootstrap

2001-08-06 Thread Berin Loritsch
I am running Sun's JDK 1.3.0_01 on Windows 2000. When I run the build.sh file (through cygwin) I get the following results: Modern compiler is not available - using classic compiler Compiling 102 source files to c:\projects\jakarta-ant\build\classes BUILD FAILED Cannot use classic compiler, as

RE: ant and WSDL

2001-08-06 Thread Brett Knights
Is there any reason you can't do it all within xslt? > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 06, 2001 8:59 AM > To: [EMAIL PROTECTED] > Subject: ant and WSDL > > > This weekend I decided to see what ant could do for me. Yes, I'v

Re: ant and WSDL

2001-08-06 Thread Stefan Bodewig
On Mon, 06 Aug 2001, Richard Emberson <[EMAIL PROTECTED]> wrote: > So how do I give ant the package path "com/contact/soap/test" and > have ant convert it and give the package name > "com.contact.soap.test" to the XSLT processor? You are correct, there is no built-in way to do this - falling bac

ant and WSDL

2001-08-06 Thread Richard Emberson
This weekend I decided to see what ant could do for me. Yes, I've got 100Kloc java code, but surely that would not be a test for ant since java code was its initial design target. I also have XSLT code that takes a WSDL file (web services description file - xml), the source file, and produces: I)

RE: JUnit tests fail -> build fail

2001-08-06 Thread Klara Ward
Now it works nice. Nice to get rid of all those "Transform time..." as well. Thanks everybody. Klara > -Original Message- > From: Conor MacNeill [mailto:[EMAIL PROTECTED]] > Sent: den 6 augusti 2001 10:04 > To: [EMAIL PROTECTED] > Subject: Re: JUnit tests fail -> build fail > > > > -

Re: JUnit tests fail -> build fail

2001-08-06 Thread Conor MacNeill
- Original Message - From: "Stefan Bodewig" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 06, 2001 6:55 PM Subject: Re: JUnit tests fail -> build fail > On 06 Aug 2001, Stefan Bodewig <[EMAIL PROTECTED]> wrote: > > > I'm not sure whether the nightly builds contain thi

RE: JUnit tests fail -> build fail

2001-08-06 Thread Stephane Bailliez
> -Original Message- > From: Klara Ward [mailto:[EMAIL PROTECTED]] > I probably did something stupid. It works with ant 1.3 but I > can't 1.4 to > work with junitreport, neither my old one(that once worked) > nor the new one. > In my ant lib I have the jars ant, crimson, optional(the sa

Re: JUnit tests fail -> build fail

2001-08-06 Thread Stefan Bodewig
On 06 Aug 2001, Stefan Bodewig <[EMAIL PROTECTED]> wrote: > I'm not sure whether the nightly builds contain this task, > optional.jar is not complete there, a more complete version can be > found here > . which in turn do

Re: JUnit tests fail -> build fail

2001-08-06 Thread Stefan Bodewig
On Mon, 6 Aug 2001, Klara Ward <[EMAIL PROTECTED]> wrote: > In my ant lib I have the jars ant, crimson, optional(the same > version as the ant1.4alpha, that is 2001-08-05), junit, xalan, > xerces and cruisecontrol. Which version of xalan? And you'd better remove crimson or xerces, one parser sh

RE: JUnit tests fail -> build fail

2001-08-06 Thread Klara Ward
Just to spam this list even further I'm not sure I tried junitreport with 1.4 at all. Has anyone else tried and got it to work? Klara > -Original Message- > From: Klara Ward [mailto:[EMAIL PROTECTED]] > Sent: den 6 augusti 2001 09:45 > To: [EMAIL PROTECTED] > Subject: RE: JUnit tests fai

RE: JUnit tests fail -> build fail

2001-08-06 Thread Klara Ward
Great, now it works. I got a little nervous before I switched to the correct optional.jar... It's easy to forget it. Instead I now managed to destroy my junitreport: C:\antdebitech\builddebitech2.xml:147: Could not create task of type: junitreport. Common solutions are to use taskdef to declare y