Search Discussions
-
With best efforts, can't get the ant 1.7.0 mail task to run under Eclipse on Mac 10.6. <mail mailhost="mail.optonline.net" mailport="25" subject="Test" <from address="[email protected]"/ <to ...
Chris Kimball
Sep 10, 2009 at 1:58 pm
Sep 15, 2009 at 3:56 am -
the first line of the makefile is makefile.${OSTYPE}${OS} How does the operating system know when to execute makefile.linux and makefile.Windows_NT. How do I do this in ant? Thanks, Veena
Veena pandit
Sep 18, 2009 at 12:38 pm
Sep 19, 2009 at 8:14 pm -
Hi, On a professional product build scripts, we see the need for calling many times <antcall to call a particular target. However due to isolation level for this target calls.. there is a huge ...
Raja Nagendra Kumar
Sep 30, 2009 at 7:29 am
Oct 2, 2009 at 4:19 pm -
Here's an initial proposal for improving Ant output, making it less verbose: http://ernstdehaan.blogspot.com/2009/09/improving-ant-output.html What do you think? Do you consider the current Ant ...
Ernst de Haan
Sep 3, 2009 at 9:54 am
Sep 4, 2009 at 7:59 pm -
Hi, Is there an easy way to calculate an arbitrary relative path between two files? Part of my Ant script copies a default configuration file to a build folder, in the course of which I modify it ...
Andy Stevens
Sep 8, 2009 at 6:42 am
Sep 9, 2009 at 2:23 pm -
I have the following in my build.xml, but it complains about an import: * import* org.apache.axis2.util.OptionsParser; I thought this class is part of the axis 2 package. Can anyone help me fix this? ...
Veena pandit
Sep 9, 2009 at 4:05 pm
Sep 10, 2009 at 5:37 pm -
Hi, We have a custom tasks which use DirectoryScanner to eliminate the need for developers trying to reference things by its relative path. However, DirectoryScanner is so main tries with different ...
Raja Nagendra Kumar
Sep 13, 2009 at 10:56 am
Sep 26, 2009 at 12:30 pm -
Hi, I'd like to launch an Ant build from Java (from a servlet in a Tomcat server). What would you advise me to do that ? Should I launch it from OS using exec or should I try to use Ant classes from ...
Jean-Baptiste BRIAUD -- Novlog
Sep 25, 2009 at 4:18 pm
Sep 25, 2009 at 7:30 pm -
Hello list, I have quite a huge build system based on ant and I govern some of its behaviour using properties, or the lack of it thereof. But ideally, I'd like to use these properties all the time, ...
Francis GALIEGUE
Sep 24, 2009 at 8:30 am
Sep 25, 2009 at 6:06 am -
Hi I am having trouble with the Ant build file which I am using in my program. I am not able to copy the JAR files which are being generated in the workspace to the deploy folder of jboss. Please let ...
Shwitzu
Sep 25, 2009 at 9:48 pm
Sep 26, 2009 at 5:32 am -
Hi, I have been given the task of converting Make files to Ant. I don't know Make and I don't know Ant. But I am going to try. There are 3 make files in the project. The first one includes another ...
Veena pandit
Sep 1, 2009 at 3:21 pm
Sep 4, 2009 at 8:39 pm -
Hi, Is there a feature in ant <include name=""/ ... & <exclude name="eee**/**"/ tags of path like structures, filesets etc. Currently * and ** are supported which are simple enough for most cases, ...
Raja Nagendra Kumar
Sep 3, 2009 at 2:18 pm
Sep 3, 2009 at 3:05 pm -
Hi all I have the following target: <target name="CreateExecutableJarFile" <jar destfile="XXX.jar" <zipfileset dir="build/classes" prefix="" / <zipfileset dir="lib" / <manifest <attribute ...
Not4google
Sep 30, 2009 at 11:22 am
Sep 30, 2009 at 12:17 pm -
Dear Members I have this java comand (related with JMX) java -classpath D:\TR\...a.jar;D:\TR\b.jar; -Dcom.sun.management.jmxremote com.jordan.Main This work, then I can get a connection from jconsole ...
Dr_pompeii
Sep 18, 2009 at 5:30 pm
Sep 25, 2009 at 1:51 am -
I imagine by now I'm the umpteenth person to ask about something like this, but the search patterns to find this don't seem to be that simple. I'm working on a small project inside a large EAR. The ...
KARR, DAVID (ATTCINW)
Sep 21, 2009 at 7:59 pm
Sep 21, 2009 at 10:19 pm -
Hello everyone, I have -- Francis Galiegue ONE2TEAM Ingénieur système Mob : +33 (0) 683 877 875 Tel : +33 (0) 178 945 552 [email protected] 40 avenue Raymond Poincaré 75116 Paris ...
Francis GALIEGUE
Sep 1, 2009 at 1:18 pm
Sep 15, 2009 at 6:42 am -
I noticed that when I run targets in a <foreach loop, that they don't know of properties that were set in previous targets or in targets which are dependencies of the given target. As an example: ...
Melih Onvural
Sep 26, 2009 at 2:25 am
Nov 10, 2009 at 4:00 pm -
Hi all, I too have same requirements in which i want extract zip files to different folders without using custom codes. This is the code am using. this extracts all zip files to "destination_dir" and ...
Varman
Sep 24, 2009 at 5:36 am
Oct 12, 2009 at 11:25 pm -
I want to pass a parameter value from one property file to another one, they both have the same name so for example I have file A with the parameter build=0999 and other file B with a number of ...
Paul collins
Sep 25, 2009 at 8:52 am
Sep 25, 2009 at 9:56 am -
I would like to put a variable set of params into a antcall, but unfortunately, I got the message 'antcall doesn't support the nested "for" element.' :-( I put my code below... Is there an other way ...
EetieD
Sep 18, 2009 at 8:53 am
Sep 18, 2009 at 12:03 pm -
I am trying to build Tolven projects on Eclipse but got the following error. BUILD FAILEDc:\tolvendev\tolven\build.xml:173: Basedir c:\tolvendev\tolven\${tolven.home}\tolvenClient does not exist I ...
Ismail Jibrin
Sep 15, 2009 at 3:56 am
Sep 15, 2009 at 2:48 pm -
When I have an Input task with "addProperty", the property it creates is only valid within that one target. So if two targets are being called in the same build run, the property added by the input ...
Don rhummy
Sep 12, 2009 at 10:33 pm
Sep 14, 2009 at 3:32 pm -
Hi, How can I set the value of out.dir to /local/tmp/ if it exists. Currently the second option when /tmp exists set the value out.dir to /tmp/myuser I know that /local/tmp exists. //mike <available ...
Mikael Petterson
Sep 11, 2009 at 11:22 am
Sep 11, 2009 at 4:15 pm -
Hi All, I'm trying to execute certain test cases as a part of my build. I'm using the ant's junit task to accomplish this. My build script is as follows, <junit fork="no" maxmemory="1024" ...
Kamesh Parameswaran
Sep 8, 2009 at 10:39 am
Sep 9, 2009 at 4:33 am -
HI: Is there an existed ant target to execute plain java source code? I need to run one java statement before junit target, I don`t want to create a separated main class for this, it is possible to ...
Gao Lin
Sep 4, 2009 at 8:22 am
Sep 4, 2009 at 9:02 am -
Hi, I see similar tasks from AntContrib and antelope. Which one is the right one and the latest one which is in having active development.. Some of the tasks in both seem to be different in signature ...
Raja Nagendra Kumar
Sep 3, 2009 at 3:09 am
Sep 3, 2009 at 12:24 pm -
Hi, 1. I am using Ant to manage the build and deployment of a collection of third party software that's used within my main product. For example, my third_party component contains versions of java, ...
Dalton, Tom
Sep 29, 2009 at 10:50 am
Sep 29, 2009 at 12:09 pm -
I am a new user. Is there a way to remotely call an Ant script? For example, can the server call an Ant script that lives on the client? Thanks, Nicole
Redmond, Nicole
Sep 28, 2009 at 11:41 am
Sep 29, 2009 at 6:01 am -
I need to check to see if two files are the same, and throw an error and stop the build if they're not. Two problems: How to throw an error? How to compare two files? This is as far as I've gotten: ...
Chris
Sep 25, 2009 at 9:05 pm
Sep 28, 2009 at 12:37 pm -
Hi, with the command line program "zip" I can create a zip-File with annotated folders inside. I try to generate such a zip-File with the org.apache.tools.zip classes coming with ant.jar. Here is my ...
Arne v.Irmer
Sep 22, 2009 at 1:51 pm
Sep 24, 2009 at 11:05 pm -
Version 1.1.0 of the Ant Script Library has just been released. The Ant Script Library (ASL) is a collection of re-usable Ant scripts that can be imported into your own projects. The ASL provides a ...
Joe Schmetzer
Sep 15, 2009 at 3:55 am
Sep 16, 2009 at 5:44 pm -
I am sure this has been answered, but googling isn't turning up any great results. I am trying to run the seam in action code examples which is a pretty simple build.xml file. Every time I try to run ...
Karl Nielsen
Sep 15, 2009 at 8:09 pm
Sep 16, 2009 at 9:02 am -
Hello, After upgrading our environment from Ant 1.6.4 to Ant 1.7.1 we ran into NullPointerExceptions with some of our custom tasks, something like: java.lang.NullPointerException at ...
Wirth, Marc
Sep 15, 2009 at 11:40 am
Sep 15, 2009 at 12:27 pm -
Hello I am trying t access a cvs server from a ant task (running in a Windows system)..When a test in a Linux system everything goes right..but in windows the task doesnot conect in the cvs server.. ...
Júlio Cesar Bueno Cotta
Sep 4, 2009 at 6:40 pm
Sep 8, 2009 at 9:13 pm -
Hi. I am a new ant user seeking to use ant to deploy my webapp to my remote server. For starters, I am just trying to copy one file from my local computer to my remote server using an scp task. ...
Littlebluehouse1
Sep 3, 2009 at 12:56 pm
Sep 3, 2009 at 8:00 pm -
Is there a way not to display the message 'deleting a file...' when Apache ANT is actually deleting a file? When I do this: <delete file="d:\pro.txt" verbose="false" quiet="true" / I see the message: ...
EetieD
Sep 30, 2009 at 9:03 am
Sep 30, 2009 at 3:26 pm -
Hi everybody, I am doing several xslt transformations managed by an ant build file. The XSLT processor used is Saxon 9 since our stylesheets are written in XSLT 2.0. My problem now is that if Saxon ...
Huditsch, Roman \(LNG-VIE\)
Sep 30, 2009 at 8:58 am
Sep 30, 2009 at 11:19 am -
I was supplied a script by Francis Galiegue see below which passes a parameter value from one property file to another one, which works for me see below, but I have comments in file B see below for ...
Paul collins
Sep 25, 2009 at 12:06 pm
Sep 29, 2009 at 3:42 pm -
How could I set ant property the value which is the result of bash script execution? For example, I need to have target which utilizes svn and bash utilities in order to control build execution. ...
Altern
Sep 28, 2009 at 4:12 pm
Sep 28, 2009 at 9:06 pm -
Hello everyone: I’m learning the Struts framework and in my first Web Application, that contains only a JSP with the classic Hello World! Message, I have some problems. I’m using Windows XP SP2 as ...
Rafael Muneton
Sep 19, 2009 at 1:02 am
Sep 20, 2009 at 4:14 pm -
Hi, I try to build apache ant on a linux machine, but I got the following error. Can somebody let me know how too fix the problem? Regards, Peng $ echo $ANT_HOME ...
Peng Yu
Sep 18, 2009 at 3:10 am
Sep 18, 2009 at 3:59 am -
Hi: Is it possible to specify own JUnitTestRunner instead of org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner in JunitTask ? If possible, in which version it will work. I need my own ...
Gao Lin
Sep 17, 2009 at 4:17 am
Sep 17, 2009 at 11:15 am -
Hi, in ant with groovy integrated task definition and its libraries in build.xml in one of the macrop <macrodef name="printImplicitOjbectXML" <sequential <groovy println(project); </groovy ...
Raja Nagendra Kumar
Sep 5, 2009 at 7:15 pm
Sep 13, 2009 at 10:49 am -
Hi, I am looking for having ant build.xml <project <target name="callOther" <ant dir="other direc.." //as part of this call I need to pass the command line options which used for invoking this ant ...
Raja Nagendra Kumar
Sep 9, 2009 at 4:00 pm
Sep 13, 2009 at 10:47 am -
Hi there, I'm a ant newbie. I've already search for my topic, but I haven't found my problem. So my problem: I have a tmp directory where other directories have been created (names are hashes). In an ...
Akentner
Sep 4, 2009 at 10:03 am
Sep 4, 2009 at 12:08 pm -
Hi All, I am facing some issues in terms of white space in PATH in ant script. Can you please help me with below line in unix env? <chmod file=" ${VSSCheckout}/CICS_REPORTS/Message Handler/C++ ...
Rajesh Kumar (IN4774)
Sep 3, 2009 at 3:21 am
Sep 3, 2009 at 5:36 am -
Hi all, I have Ant 1.7.0 running on a GERMAN Windows XP. The thing has also filenames with UMLAUTS in the name. Now, I can't get even the below minimal example to correctly print the umlauts, ...
Justin Case
Sep 1, 2009 at 4:19 pm
Sep 3, 2009 at 3:31 am -
Savant 1.5.2 has just been released. It fixes the Windows batch script issues that some folks were having when Java was located in a folder that contained spaces and also a transitive dependency ...
Brian Pontarelli
Sep 29, 2009 at 10:34 pm
Sep 29, 2009 at 10:34 pm -
If I have something like: <target="abc" <subant output=testOutput.xml" ... </subant </target Is there any way to make the "testOutput.xml" have a timestamped filename? Thanks! -- View this message in ...
Isaacsteele
Sep 29, 2009 at 7:29 pm
Sep 29, 2009 at 7:29 pm -
Hi, When using the junit task in Ant if a test times out, then all the user receives is an one line error to the console saying that the tests timeout and the junit report looks fine because it only ...
Alex Foreman
Sep 29, 2009 at 10:29 am
Sep 29, 2009 at 10:29 am
Group Overview
group | user |
categories | ant |
discussions | 59 |
posts | 250 |
users | 78 |
website | ant.apache.org |
78 users for September 2009
Archives
- June 2016 (9)
- May 2016 (10)
- April 2016 (16)
- March 2016 (22)
- February 2016 (3)
- January 2016 (5)
- November 2015 (13)
- October 2015 (4)
- September 2015 (13)
- August 2015 (5)
- July 2015 (1)
- June 2015 (21)
- May 2015 (10)
- April 2015 (22)
- March 2015 (12)
- February 2015 (26)
- January 2015 (12)
- December 2014 (20)
- November 2014 (3)
- October 2014 (5)
- September 2014 (19)
- August 2014 (1)
- July 2014 (11)
- June 2014 (5)
- May 2014 (28)
- April 2014 (11)
- March 2014 (18)
- February 2014 (27)
- January 2014 (14)
- December 2013 (27)
- November 2013 (24)
- October 2013 (10)
- September 2013 (16)
- August 2013 (63)
- July 2013 (12)
- June 2013 (19)
- May 2013 (26)
- April 2013 (38)
- March 2013 (26)
- February 2013 (19)
- January 2013 (41)
- December 2012 (20)
- November 2012 (25)
- October 2012 (20)
- September 2012 (26)
- August 2012 (49)
- July 2012 (17)
- June 2012 (27)
- May 2012 (43)
- April 2012 (6)
- March 2012 (64)
- February 2012 (43)
- January 2012 (43)
- December 2011 (56)
- November 2011 (91)
- October 2011 (60)
- September 2011 (25)
- August 2011 (91)
- July 2011 (63)
- June 2011 (89)
- May 2011 (51)
- April 2011 (34)
- March 2011 (94)
- February 2011 (135)
- January 2011 (114)
- December 2010 (54)
- November 2010 (144)
- October 2010 (92)
- September 2010 (97)
- August 2010 (83)
- July 2010 (161)
- June 2010 (146)
- May 2010 (138)
- April 2010 (148)
- March 2010 (205)
- February 2010 (173)
- January 2010 (128)
- December 2009 (191)
- November 2009 (239)
- October 2009 (263)
- September 2009 (250)
- August 2009 (281)
- July 2009 (299)
- June 2009 (243)
- May 2009 (295)
- April 2009 (175)
- March 2009 (262)
- February 2009 (178)
- January 2009 (322)
- December 2008 (203)
- November 2008 (285)
- October 2008 (248)
- September 2008 (204)
- August 2008 (250)
- July 2008 (289)
- June 2008 (280)
- May 2008 (253)
- April 2008 (271)
- March 2008 (373)
- February 2008 (378)
- January 2008 (347)
- December 2007 (214)
- November 2007 (299)
- October 2007 (398)
- September 2007 (437)
- August 2007 (313)
- July 2007 (389)
- June 2007 (429)
- May 2007 (248)
- April 2007 (425)
- March 2007 (254)
- February 2007 (399)
- January 2007 (423)
- December 2006 (297)
- November 2006 (248)
- October 2006 (395)
- September 2006 (351)
- August 2006 (482)
- July 2006 (455)
- June 2006 (504)
- May 2006 (590)
- April 2006 (425)
- March 2006 (395)
- February 2006 (522)
- January 2006 (566)
- December 2005 (500)
- November 2005 (431)
- October 2005 (443)
- September 2005 (463)
- August 2005 (633)
- July 2005 (507)
- June 2005 (553)
- May 2005 (420)
- April 2005 (467)
- March 2005 (647)
- February 2005 (493)
- January 2005 (650)
- December 2004 (620)
- November 2004 (416)
- October 2004 (628)
- September 2004 (599)
- August 2004 (625)
- July 2004 (634)
- June 2004 (688)
- May 2004 (636)
- April 2004 (680)
- March 2004 (712)
- February 2004 (800)
- January 2004 (1,053)
- December 2003 (592)
- November 2003 (743)
- October 2003 (893)
- September 2003 (874)
- August 2003 (1,083)
- July 2003 (1,286)
- June 2003 (927)
- May 2003 (715)
- April 2003 (1,231)
- March 2003 (1,264)
- February 2003 (1,135)
- January 2003 (964)
- December 2002 (665)
- November 2002 (813)
- October 2002 (1,027)
- September 2002 (1,004)
- August 2002 (1,009)
- July 2002 (1,087)
- June 2002 (1,026)
- May 2002 (1,345)
- April 2002 (913)
- March 2002 (933)
- February 2002 (1,121)
- January 2002 (1,176)
- December 2001 (726)
- November 2001 (908)
- October 2001 (965)
- September 2001 (975)
- August 2001 (1,240)
- July 2001 (1,236)
- June 2001 (1,462)
- May 2001 (929)
- April 2001 (1,066)
- March 2001 (963)
- February 2001 (770)
- January 2001 (908)
- December 2000 (649)
- November 2000 (833)
- October 2000 (981)
- September 2000 (518)
- August 2000 (497)
- July 2000 (89)