AW: [Ant 1.6.5] -classpath problems

2005-08-08 Thread Jan.Materne
you have to include the jars inside your path, not the directory. Jan >-Ursprüngliche Nachricht- >Von: nathan le [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 8. August 2005 23:48 >An: user@ant.apache.org >Betreff: [Ant 1.6.5] -classpath problems > >Hi, > >I couldnt

AW: PesterCat Ant Toolkit : New addition to external tools and tasks

2005-08-08 Thread Jan.Materne
added Jan >-Ursprüngliche Nachricht- >Von: Dan Prince [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 8. August 2005 06:36 >An: user@ant.apache.org >Betreff: PesterCat Ant Toolkit : New addition to external >tools and tasks > >PesterCat Ant Toolkit. > >Description: PesterCat is a web test

AW: More exclude problems

2005-08-08 Thread Jan.Materne
Just another point - your two tar-commands are nearly the same. You could extract a : BTW -

AW: exclude directories from jar file

2005-08-08 Thread Jan.Materne
>USE the following modifications. it should work > >excludes="rex/rexml/*.classes" nop a) "*.classes" catchs only files directly under rexml --> use rex/rexml/**/*.classes b) I think you mean "**/*.class" ... Jan - To unsubsc

Re: Fwd: SCP...done...BUILD SUCCESSFUL....no local file created

2005-08-08 Thread Nicolas Vervelle
Hello, Brian Kuhn wrote: Has anyone gotten the SCP task to work correctly? I need to copy a single file from a server to my local machine using SSH. Does anyone have a working example? I am using SCP to update a website: I scp a .tgz file of the modifications and then extract it with sshexe

More exclude problems

2005-08-08 Thread Thom Hehl
Thanks to Jan for his excellent and quick answer. I have now built two jar files from the one source. Now, to finish my task, I want to create two distributions. The only difference between these two is the two different jar files. Here are my tasks:

[Ant 1.6.5] -classpath problems

2005-08-08 Thread nathan le
Hi, I couldnt find anything to help me when searching the archives/bug DB I am trying to add some classpaths but when I try to run ant it complains that the jar file cannot be found I have checked spelling and that the jar file exists If anyone has had similar problems pls can you help Cheers

RE: conditional compilation with Jet

2005-08-08 Thread Dominique Devienne
> From: Roedy Green [mailto:[EMAIL PROTECTED] > > I am using the Jet compiler which takes a jar and produces an exe. > > > > > > > > This is an time-consuming operation that is not needed if the > converter.exe has a last-modified date after the jar's. > > Any hints on w

Re: exclude directories from jar file

2005-08-08 Thread Ranjeet_Suri
USE the following modifications. it should work excludes="rex/rexml/*.classes" Thom Hehl <[EMAIL PROTECTED]> 08 Aug 2005 06:19 Please respond to "Ant Users List" To: user@ant.apache.org cc: Subject:exclude directories from jar file Our Re

RE: [ANT 1.6.5] junitreport task using taskdef

2005-08-08 Thread BOUSQUET Jeremie
Hi again, I tried to add all ant-*.jar dependencies manually in my junitreport taskdef but it did not work. So I tried option 3 : add them manually in -lib ant command line, what I wanted to avoid, but it works ... Anyway if you know this problem I'm still interested... Thanks Jeremie > -

Code Cache Problem

2005-08-08 Thread Robin Darby
Hello, I'm using ANT as a formalized build system/script for a soap like (like, cuss i rolled my own :) web-site deployment system. Everything has been working great, but my (nasty) sysadmin man has slapped a RLimitMem statement into my development box apache conf... grrr. Now when my

Fwd: SCP...done...BUILD SUCCESSFUL....no local file created

2005-08-08 Thread Brian Kuhn
Has anyone gotten the SCP task to work correctly? I need to copy a single file from a server to my local machine using SSH. Does anyone have a working example? Thanks, Brian -- Forwarded message -- From: Brian Kuhn <[EMAIL PROTECTED]> Date: Aug 4, 2005 5:34 PM Subject: SC

[ANT 1.6.5] junitreport task using taskdef

2005-08-08 Thread BOUSQUET Jeremie
Hello, Following this article: http://ant.apache.org/faq.html#delegating-classloader-1.6 ... I removed ant-junit.jar from ANT_HOME/lib, and taskdefed junit task as follow, which worked very well : By the way I'm using

Re: extracting part of a property.

2005-08-08 Thread Krist van Besien
On 8/8/05, James Fuller <[EMAIL PROTECTED]> wrote: > Krist van Besien wrote: > > >Hello, > > > >I am trying to figure out if I could get ant to do some string manipulation. > >Suppose I have a property with value: "foo_0.01 > >and I want to split this on the _ character and put "foo" and "0.01" >

xmlcatalog to resolve document() in xslt task

2005-08-08 Thread Ron Piterman
Hi, Inside an xslt task I define an xmlcatalog. In the xsl file I call document(ff.xml) the file is on the classpath, but I keep getting a NoFileFound Exception. What did I do wrong? Cheers, Ron description

AW: exclude directories from jar file

2005-08-08 Thread Jan.Materne
Change excludes="rex/rexml" to excludes="rex/rexml/" Jan >-Ursprüngliche Nachricht- >Von: Thom Hehl [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 8. August 2005 15:20 >An: user@ant.apache.org >Betreff: exclude directories from jar file > >I am trying to create 2 jar

exclude directories from jar file

2005-08-08 Thread Thom Hehl
I am trying to create 2 jar files from my application. I have directory rex that contains a bunch of source files and then directory rex/rexml that contains a separate, but closely related application. The only difference will be the root (main class) application. I want all of the contents o

Re: extracting part of a property.

2005-08-08 Thread James Fuller
Krist van Besien wrote: >Hello, > >I am trying to figure out if I could get ant to do some string manipulation. >Suppose I have a property with value: "foo_0.01 >and I want to split this on the _ character and put "foo" and "0.01" >each in a different property to use further down in my ant script

AW: extracting part of a property.

2005-08-08 Thread Jan.Materne
I had a snippet in my snippet-lib ... Maybe that helps. Jan >-Ursprüngliche Nachricht- >Von: Krist van Besien [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 8. August 2005 14:26 >An: user@ant.apache.org >Betreff:

extracting part of a property.

2005-08-08 Thread Krist van Besien
Hello, I am trying to figure out if I could get ant to do some string manipulation. Suppose I have a property with value: "foo_0.01 and I want to split this on the _ character and put "foo" and "0.01" each in a different property to use further down in my ant script. How would I do this? Krist

AW: Problem with pathconvert with new line

2005-08-08 Thread Jan.Materne
Maybe you´ll write the property directly to file for debug Jan >-Ursprüngliche Nachricht- >Von: Conor MacNeill [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 8. August 2005 02:52 >An: Ant Users List >Betreff: Re: Problem with pathconvert with new line > >Marcelo, > >I'm guessing that