Re: Ant on Mac OS X

2014-03-08 Thread Carlos Araya
Tony, Doesn't Ant come bundled with Xcode? If you're doing any sort of development on OS X it would pay to install the dev tools and then check if ant gets installed with it and it may not be the current version. Carlos On Fri, Mar 7, 2014 at 7:12 AM, Harold Putman wrote: > bre

Re: Ant with Dimensions

2014-02-05 Thread Carlos Araya
The executable pcli was not found. Either it is not installed, not on a path Ant can find. What happens if you run pcli from the command line? Carlos Sent from my iPad > On Feb 5, 2014, at 5:17 AM, "Sander ..." wrote: > > > > Hello, > > I try search before

Re: Ant build from source instructions incorrect?

2014-01-21 Thread Carlos Araya
Is that the only error you're getting? What does the build log say? Sent from my iPad > On Jan 21, 2014, at 2:52 PM, Michael Durket > wrote: > > I'm attempting to build Ant 1.9.3 from the source distribution on Redhat > Linux 5 using Oracle Java 1.7.0. It seems to build correctly but fails th

Re: using ant for non build tasks

2014-01-15 Thread Carlos Araya
Jay, For my ebook production flow, I use an ant script that fetches files from a web server, unzips them, moves them a around and uses them to process the Docbook file. It is not trivial but it's also not too complicated, Carlos Sent from my iPad > On Jan 15, 2014, at 7:22 AM, Ja

Re: Apache ANT execution error - Problem: failed to create task or type if

2012-09-13 Thread Carlos Araya
As far as I know if is not a built in Ant task but it comes from the ant.contrib package downloadable from sourceforge. http://ant-contrib.sourceforge.net/ Download the package and follow the instructions to get it running on your build. Carlos On Thu, Sep 13, 2012 at 11:19 AM, Rao

Re: ANT and HTML Tidy

2012-08-31 Thread Carlos Araya
Try something like this: You don't need to run the shell to use TIdy, you can call Tidy directy. As far as I know, Ant will run the commands from the directory where the build file is located. Carlos On Thu, Aug 30, 2012 at 10:31 AM, Kevin Kim wrote: > Completely beginner in ANT

Newbie question

2012-04-20 Thread Carlos Araya
e out how. Thanks for all your help Carlos signature.asc Description: Message signed with OpenPGP using GPGMail

Newbie questions

2012-04-12 Thread Carlos Araya
I have two questions: 1. Is there a way I can force ant to honor the latest version of the build file? Is it cached somewhere? When trying to copy a resource to a directory before ziping it I can't get it to copy or it appears to copy to multiple locations. This may be due to changes I've made to

Re: Remove nulll chars from file

2010-07-08 Thread Carlos Garcés
El 01/07/2010 16:44, Stefan Bodewig escribió: On 2010-07-01, Carlos Garcés wrote: There is other way to represent the null char on ant script? Unfortunately there isn't - and you can't even legally add a NUL character to any XML file either (for example� would be invalid).

Remove nulll chars from file

2010-07-01 Thread Carlos Garcés
ar on ant script? Un saludo Carlos Garcés - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org

Re: Please Help me in Calling Maven 1.0.2 building job from ANT

2008-11-06 Thread Carlos Ortiz
Hi, Simple way use the exec task to call mvn.bat or mvn if mvn is not in the path 2008/11/6 Prasad Nakarikanti <[EMAIL PROTECTED]>: > Hi, > > > > We are recently started using JetBrains TeamCity for Build Automation and > CI. > > > > We are using Maven 1.02 for buildi

Re: How to access the basedir of ANOTHER project in Eclipse?

2008-10-28 Thread Carlos Ortiz
Actually it is posible but you must run the build.xml as a external tool in eclipse then send as a argument -D= Yet there is a small trick since ${workspace_loc} variable won't work you have to create a new variable with the same value of ${workspace_loc} for example MyVar=/home/myuser/mywork

Re: Defining ant target to run junit tests using dbunit

2008-05-23 Thread Carlos Alonso
from which directory the ant file is being executed/invoked and to where the project basedir property is pointing. And finally, this issues are frustrating at first, but when you have done it a few times, it becomes much easier. Regards. Carlos tmni escribió: I give up I tried foll

Re: Need help calling one build file from another

2008-05-22 Thread Carlos Alonso
this: inheritall="whether you want your invoked build to inherit all the declared properties at this point or not" > Search the ant manual for further information or more detailed information about this task. Regards.

Re: Defining ant target to run junit tests using dbunit

2008-05-21 Thread Carlos Alonso
|-> file1.jar | | | |-> file2.jar |-> sub-lib2 | |-> file3.jar Regards. Carlos tmni escribió: I thought I had included the junit.jar in the classpath, but maybe it's defined improperly. I didn't see it in your sample, where do you define that part o

Re: Defining ant target to run junit tests using dbunit

2008-05-21 Thread Carlos Alonso
Have you included the java junit.jar library into the classpath provided for the junit task? The TestListener class is actually included in that .jar file. Regards. Carlos tmni escribió: I appreciate both attempts to help. I had already viewed that other web page and tried to follow it. It

Re: Defining ant target to run junit tests using dbunit

2008-05-20 Thread Carlos Alonso
t.taskdefs.optional.junit.JUnitTask" classpath="${scripts}/tools/ant-junit.jar" /> I hope it may help you. Regard

Re: Executing a sorted fileset of .sql files in sql task

2008-05-19 Thread Carlos Alonso
Thank you very much Andrew. It works fine! Andrew Goktepe escribió: Carlos, That message is coming from the element, which apparently does not support a nested . The Ant documentation matches the error message you are seeing and says that only supports single element resource collections

Re: Doubt in property file

2008-05-19 Thread Carlos Alonso
re, I can think about a simple test in which you load two property files with the same variable declared and afterwards, output the value by using an task. Hope it will help. Carlos [EMAIL PROTECTED] escribió: HI All, I need to clear following doubt in ANT. 1: Can we have more tha

Executing a sorted fileset of .sql files in sql task

2008-05-16 Thread Carlos Alonso
Hi everyone. I'm looking for an automated way to execute a set of .sql files inside a sql task and I do need them to be executed in order. The ant task I've tried is the following includes="*.sql" />

On error Redo some TasK

2008-05-12 Thread Carlos Ortiz
Hi,Here is my question, how do i redo or execute some task's when another fail for example , if targetA fail go to onErrorTargetATarget... been the main mainTarget thks in advance

Re: XSLT task in Ant 1.7.0+saxon8 fails when processing more than one file

2007-02-05 Thread Carlos
I've found a workaround: using reloadstylesheet="true". Could it be then a problem with Saxon? But then, why is it working with Ant 1.6.5? Thanks, Carlos Carlos wrote: > > Hi. I'm using Ant 1.7.0 and I need XSLT 2.0, so I'm using saxon8.jar > by adding

XSLT task in Ant 1.7.0+saxon8 fails when processing more than one file

2007-02-05 Thread Carlos
aching the output of "ant -diagnostics", in case something is wrong with my configuration. Can anybody tell me what I'm doing wrong? Thanks, Carlos P.S.: to run the example in the .tar.gz you'll need to copy saxon8.jar to the lib directory http://www.nabble.com/file/6251