RE: I can't use the task

2008-08-12 Thread Loehr, Ruel
Google ant-contrib. -Original Message- From: Mike Garcia [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2008 11:13 AM To: user@ant.apache.org Subject: I can't use the task Hello, I have added the if task around some exec statements because I don't want them executed if a property

RE: sshexec (running remote commands with sudo) forced psuedo-tty allocation

2008-07-22 Thread Loehr, Ruel
why can't you just do an exec with the command ssh -t .? -Original Message- From: mindspin311 [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 22, 2008 10:37 AM To: user@ant.apache.org Subject: sshexec (running remote commands with sudo) forced psuedo-tty allocation I'm trying to mimi

writing to ant's logger from external type

2008-06-17 Thread Loehr, Ruel
I've written a task which uses a custom data type. I'd like to be able to write log messages from within that type using ANT's logging mechanism. If I use that type independently, I'd like to just write to System.out. Does anyone know of a way to pass ants logger to an external type such tha

RE: Ivy [2.0-beta-2]: Download Source Jars

2008-06-04 Thread Loehr, Ruel
I'm not sure of the best practice, but one thing that you can do is create s a conf called "src". And then publish src artifacts to that configuration You could publish them directly into the same conf, but I don't like to do that as I auto configure my

RE: Reading XML

2008-06-02 Thread Loehr, Ruel
It depends what you mean by package binaries. One could argue that an ant script (which is xml) that instructs to create a zip would satisfy your question. From: Steven Guitar [EMAIL PROTECTED] Sent: Monday, June 02, 2008 1:34 PM To: user@ant.apache.or

RE: Configurations really hard to understand

2008-06-02 Thread Loehr, Ruel
Yes, I struggled with it too at first. In my main project, I usually publish a directory config called runtime which just has the absolute necessary runtime dependencies. Then for any project which consumes my original one, I define a compile configuration which "eat" the runtime one. conf="c

RE: ivy issues

2008-05-22 Thread Loehr, Ruel
It's probably related to configurations. - | |modules|| artifacts | | conf | number| search|dwnlded|evicted|| number|dwnlded| ---

RE: ivy issues

2008-05-22 Thread Loehr, Ruel
What is the output? What is the output when running in debug mode? e.g. ant -debug yourtarget -Original Message- From: Bobby Quinne [mailto:[EMAIL PROTECTED] Sent: Thursday, May 22, 2008 1:01 PM To: user@ant.apache.org Subject: ivy issues Hi, I am experiencing a few issues that I hav

RE: Ant task walk html and find broken links

2008-05-14 Thread Loehr, Ruel
This is the correct answer. You are talking about doing functional testing. This is the perfect tool for doing so. From: Gilbert Rebhan [EMAIL PROTECTED] Sent: Wednesday, May 14, 2008 4:15 PM To: Ant Users List Subject: Re: Ant task walk html and find b

RE: What is the first entry point to the Ivy lifecycle?

2008-02-08 Thread Loehr, Ruel
You need to do a resolve before you do the publish. I really struggled understanding this and getting it to work. Below is my publish target. I may be doing some unnecessary stuffbut this works for me. -Original

RE: IVYDE - what are the alternatives?

2008-01-17 Thread Loehr, Ruel
+1. I like the idea of having an xsl to do this (I'm a little embarrassed that I didn't think of it before). I'd be happy to help you work on it or test it. I had written an ant task to do the same sort of thing, but XSL would be a lot simpler. -Original Message- From: Nicolas Lalev

RE: IVYDE - what are the alternatives?

2008-01-17 Thread Loehr, Ruel
tions, but I'm admittedly not that great at eclipse plugin development. On fixing the use origin issue.thats good news. That's a really big one. Thank you. You've answered all my questions though, I'll check out the official release and see how things go. On J

IVYDE - what are the alternatives?

2008-01-16 Thread Loehr, Ruel
First, I'm a big fan of ivy. When we use it through command line, it is flawless. The eclipse integration is starting to become painful to the point that we are investigating alternatives. The first issue I ran into was when dealing with snapshots: http://www.nabble.com/IVY-DE-and-use-or

RE: Ant & JBoss - How to check conditions?

2008-01-04 Thread Loehr, Ruel
Here is an alternative. JBoss has shutdown Just call the shutdown script. No need to mess with jmx. If jobss is n't running I have no idea how you are going to access a jmx Boolean flag. If you want to get fancy, you can inspect the shutdown.bat file

RE: Ant build vs. CruiseControl

2007-10-25 Thread Loehr, Ruel
Before declaring your taskdef echo the classpath you are using and post it. Google "ant print classpath" for instructions. -Original Message- From: david [mailto:[EMAIL PROTECTED] Sent: Thursday, October 25, 2007 10:43 AM To: user@ant.apache.org Subject: Ant build vs. CruiseControl Hell

RE: Automated builds with ANT / JUnit, emailing the results of the build / unit tests

2007-09-13 Thread Loehr, Ruel
You can do the following. 1) Checkout cruisecontrol or Hudson.- nightly build servers, Hudson is easier to setup for new people They'll handle what you are trying to do without jumping through hoops. -Original Message- From: Steve Whatmore [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: Java error in heretofore stable, working task

2007-08-23 Thread Loehr, Ruel
The errors where nothing has changed are always tough to debug.When it happens to me, I usually find out something has changed. Have you tried printing out the classpath that the xslt task is using? Seems to me that it is the most likely culprit. -Original Message- From: [EMAIL PROTE

RE: Javadoc error

2007-08-15 Thread Loehr, Ruel
Break it up into several calls? -Original Message- From: Eric Wood [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 15, 2007 1:17 PM To: user@ant.apache.org Subject: Javadoc error We are running javadoc against about 2500 java files and when we run it we get the following error: javado

RE: best practices - building on multiple os's

2007-07-24 Thread Loehr, Ruel
Nohup might be just the trick, I'll give that a shot. -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED] Sent: Monday, July 23, 2007 4:32 PM To: Ant Users List Subject: Re: best practices - building on multiple os's Loehr, Ruel wrote: > Hoping some others mi

best practices - building on multiple os's

2007-07-23 Thread Loehr, Ruel
Hoping some others might have some insight, I've googled around for 2 days but haven't yet found an answer that seems right. I have a project which is c++ based and have created an ant wrapper around it to checkout, build, build an installer, and publish the project. This part works pretty wel

RE: Ftp task question again

2007-05-01 Thread Loehr, Ruel
Do you know ahead of time what the filenames might be?If so, then you could do something like this: For one of the files. -Original Message- From: Robertson, Julie [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 01, 2007 1:28 PM To: Ant Users List Subject: Ftp task question again S

using cvstagdiff with a branch

2007-04-26 Thread Loehr, Ruel
I'm using cruisecontrol as my nightly build system and have recently setup some branch build. I use the cvstagdiff to gather a list of changes.However, I am currently getting changes from both the head and the branch. The attributes form the manual are: startTag - The earliest tag fro

RE: tag inside some other tag(cvs)

2007-04-20 Thread Loehr, Ruel
/* HI, I THINK THE PROBLEM IS WITH CVS LOCK, WITH THAT IT IS COMING THE BELOW ERROR OR DO I NEED TO MENTION THE SPECIAL CHARACTERS(`$,.:;@') IN ANY WAY TO AVOID THIS PROBLEM PLEASE GIVE ME SOLUTION IF ANYBODY KNOWS THANKS, PRASAD */ i think you have a problem with y

Source code scanning

2007-04-18 Thread Loehr, Ruel
I have an ant task which I need to write and would like to pick your brains to see if you have heard of anything similar... We provide a web app which has internationalization support. Invariably, our developers tend to hardcode the strings when they should be using the localization functio