You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(30) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(34) |
Feb
(47) |
Mar
(85) |
Apr
(221) |
May
(116) |
Jun
(53) |
Jul
(17) |
Aug
(55) |
Sep
(63) |
Oct
(35) |
Nov
(71) |
Dec
(24) |
2003 |
Jan
(40) |
Feb
(94) |
Mar
(88) |
Apr
(114) |
May
(25) |
Jun
(38) |
Jul
(47) |
Aug
(56) |
Sep
(43) |
Oct
(152) |
Nov
(73) |
Dec
(26) |
2004 |
Jan
(33) |
Feb
(180) |
Mar
(46) |
Apr
(125) |
May
(58) |
Jun
(6) |
Jul
(23) |
Aug
(14) |
Sep
(11) |
Oct
(12) |
Nov
(13) |
Dec
(31) |
2005 |
Jan
(62) |
Feb
(20) |
Mar
(24) |
Apr
(6) |
May
(8) |
Jun
(5) |
Jul
(2) |
Aug
(12) |
Sep
(6) |
Oct
(3) |
Nov
(6) |
Dec
|
2006 |
Jan
|
Feb
(17) |
Mar
(57) |
Apr
(38) |
May
(36) |
Jun
(31) |
Jul
(13) |
Aug
(35) |
Sep
(19) |
Oct
(50) |
Nov
(36) |
Dec
(44) |
2007 |
Jan
(42) |
Feb
(31) |
Mar
(71) |
Apr
(28) |
May
(45) |
Jun
(8) |
Jul
(52) |
Aug
(38) |
Sep
(20) |
Oct
(11) |
Nov
(6) |
Dec
(8) |
2008 |
Jan
(6) |
Feb
(19) |
Mar
(26) |
Apr
(29) |
May
(1) |
Jun
(12) |
Jul
(15) |
Aug
(20) |
Sep
(36) |
Oct
(9) |
Nov
(7) |
Dec
|
2009 |
Jan
(4) |
Feb
(5) |
Mar
(2) |
Apr
(9) |
May
(23) |
Jun
(4) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
|
Nov
(2) |
Dec
|
2010 |
Jan
(1) |
Feb
|
Mar
|
Apr
(2) |
May
(2) |
Jun
|
Jul
(2) |
Aug
(1) |
Sep
|
Oct
|
Nov
(2) |
Dec
|
2011 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(10) |
Aug
(2) |
Sep
|
Oct
(1) |
Nov
(1) |
Dec
(3) |
2012 |
Jan
(1) |
Feb
(5) |
Mar
|
Apr
(4) |
May
(2) |
Jun
|
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
(1) |
Dec
(3) |
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2008-10-22 18:59:28
|
Bugs item #2187446, was opened at 2008-10-22 18:59 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2187446&group_id=36177 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Can not extend a compiler task to an extended compiler task. Initial Comment: I can not extend a compiler task to a compiler task that is already extended. example: <compiler id="x"/> <compiler id="y" extends="x"/> <compiler id="z" extends="y"/> <cc ...> <compiler refid="z"/> </cc> In a my real world code I get a message saying: [cpptasks:cc] 0 total files to be compiled. [cpptasks:cc] Starting link [cpptasks:cc] ar: creating libincore.a If I cc's compiler task refs "y"... it works! Also, libincore.a contains the following when I ref "z": !<arch> That is a little odd... I would atleast expect it to be empty. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2187446&group_id=36177 |
From: SourceForge.net <no...@so...> - 2008-10-20 22:37:44
|
Bugs item #2175495, was opened at 2008-10-17 21:19 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2175495&group_id=36177 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: cpptasks Group: v1.0 (example) Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Curt Arnold (carnold) Summary: ld used even though g++ is specified Initial Comment: Using the example from the cpptasks website, I am not able to link. Ant correctly compiles my object, but uses the ld linker instead of g++ causing the build to fail. I attempted to add a linker tag forcing it to use g++... and that did not work. Here is some of the error message: [cc] obj/main.o(.text+0xa5): In function `main': [cc] : undefined reference to `std::basic_ostream<char, std::char_traits<char> >::operator<<(std::basic_ostream<char, std::char_traits<char> >& (*)(std::basic_ostream<char, std::char_traits<char> >&))' [cc] obj/main.o(.eh_frame+0x11): undefined reference to `__gxx_personality_v0' [cc] collect2: ld returned 1 exit status Here is my build.xml: <project name="MainApp" default="compile"> <taskdef resource="cpptasks.tasks"/> <target name="compile"> <mkdir dir="./obj"/> <cc name="g++" outtype="executable" subsystem="console" outfile="./main.exe" objdir="./obj"> <fileset dir="." includes="*.cpp"/> <linker name="g++"/> </cc> </target> </project> I am using cpptasks 1.0 beta 5 with ant 1.7.1 under JDK 6.10. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2008-10-20 22:37 Message: I got this working by adding this: <cpptasks:linker id="LinuxLinker"> <libset libs="stdc++"/> </cpptasks:linker> ... which I shouldn't have to. Using g++ to link should pass the required arguments to ld to link a C++ program. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2175495&group_id=36177 |
From: SourceForge.net <no...@so...> - 2008-10-20 22:33:09
|
Bugs item #2183270, was opened at 2008-10-20 22:33 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2183270&group_id=36177 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: cpptasks Group: v1.0 (example) Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Curt Arnold (carnold) Summary: Ant 1.5 style tasks not working Initial Comment: I created a build.xml script with the "cc" task and everything worked. I could add a "linker" task as long as it was nested inside of my "cc" task. When I moved it to the project level and ref.ed it by id... I would get a "Problem: failed to create task or type linker" error. The same happened when I tried to ref. a "compiler" task from the project level. To fix it, I had to use the 1.6 style and prefix my taks with "cpptask:". I also had to add xmlns:cpptasks="antlib:net.sf.antcontrib.cpptasks" to my project instead of using taskdef. If this is depricated it would be nice to know. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2183270&group_id=36177 |
From: SourceForge.net <no...@so...> - 2008-10-17 21:19:54
|
Bugs item #2175495, was opened at 2008-10-17 21:19 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2175495&group_id=36177 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: cpptasks Group: v1.0 (example) Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Curt Arnold (carnold) Summary: ld used even though g++ is specified Initial Comment: Using the example from the cpptasks website, I am not able to link. Ant correctly compiles my object, but uses the ld linker instead of g++ causing the build to fail. I attempted to add a linker tag forcing it to use g++... and that did not work. Here is some of the error message: [cc] obj/main.o(.text+0xa5): In function `main': [cc] : undefined reference to `std::basic_ostream<char, std::char_traits<char> >::operator<<(std::basic_ostream<char, std::char_traits<char> >& (*)(std::basic_ostream<char, std::char_traits<char> >&))' [cc] obj/main.o(.eh_frame+0x11): undefined reference to `__gxx_personality_v0' [cc] collect2: ld returned 1 exit status Here is my build.xml: <project name="MainApp" default="compile"> <taskdef resource="cpptasks.tasks"/> <target name="compile"> <mkdir dir="./obj"/> <cc name="g++" outtype="executable" subsystem="console" outfile="./main.exe" objdir="./obj"> <fileset dir="." includes="*.cpp"/> <linker name="g++"/> </cc> </target> </project> I am using cpptasks 1.0 beta 5 with ant 1.7.1 under JDK 6.10. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2175495&group_id=36177 |
From: Gary M. S. <Gar...@ha...> - 2008-10-09 02:29:50
|
Never mind. I found the place where I can add the HPUX cc version and then I assume that I can have two <compiler>...</compiler> section within a library, one with the .c files and the other with the .cpp files. |
From: <jo...@us...> - 2008-10-01 15:19:07
|
Revision: 175 http://ant-contrib.svn.sourceforge.net/ant-contrib/?rev=175&view=rev Author: jonkri Date: 2008-10-01 15:18:44 +0000 (Wed, 01 Oct 2008) Log Message: ----------- Fixed support for long MinGW Windows commands. Thanks to Curt Arnold for pointing at this solution. Modified Paths: -------------- cpptasks/trunk/src/main/java/net/sf/antcontrib/cpptasks/gcc/GccCCompiler.java Modified: cpptasks/trunk/src/main/java/net/sf/antcontrib/cpptasks/gcc/GccCCompiler.java =================================================================== --- cpptasks/trunk/src/main/java/net/sf/antcontrib/cpptasks/gcc/GccCCompiler.java 2008-09-26 12:36:25 UTC (rev 174) +++ cpptasks/trunk/src/main/java/net/sf/antcontrib/cpptasks/gcc/GccCCompiler.java 2008-10-01 15:18:44 UTC (rev 175) @@ -1,5 +1,5 @@ /* - * + * * Copyright 2001-2004 The Ant-Contrib project * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -32,7 +32,7 @@ /** * Adapter for the GCC C/C++ compiler - * + * * @author Adam Murdoch */ public final class GccCCompiler extends GccCompatibleCCompiler { @@ -106,14 +106,14 @@ libtoolCompiler, newEnvironment, env); isPICMeaningful = System.getProperty("os.name").indexOf("Windows") < 0; } - public void addImpliedArgs(final Vector args, + public void addImpliedArgs(final Vector args, final boolean debug, - final boolean multithreaded, - final boolean exceptions, + final boolean multithreaded, + final boolean exceptions, final LinkType linkType, final Boolean rtti, final OptimizationEnum optimization) { - super.addImpliedArgs(args, debug, multithreaded, + super.addImpliedArgs(args, debug, multithreaded, exceptions, linkType, rtti, optimization); if (isPICMeaningful && linkType.isSharedLibrary()) { args.addElement("-fPIC"); @@ -130,9 +130,9 @@ } /** * Create parser to determine dependencies. - * + * * Will create appropriate parser (C++, FORTRAN) based on file extension. - * + * */ protected Parser createParser(File source) { if (source != null) { @@ -237,6 +237,16 @@ return GccLinker.getInstance().getLinker(linkType); } public int getMaximumCommandLength() { - return Integer.MAX_VALUE; + /* + * Window-specific compilers use a limit of 2048 to prevent over + * running the available command line length, while the Unix compilers + * assume that they have an unlimited command line. + */ + if(System.getProperty("os.name").indexOf("Windows") >= 0) { + return 2048; + } + else { + return Integer.MAX_VALUE; + } } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bo...@us...> - 2008-09-26 12:36:34
|
Revision: 174 http://ant-contrib.svn.sourceforge.net/ant-contrib/?rev=174&view=rev Author: bodewig Date: 2008-09-26 12:36:25 +0000 (Fri, 26 Sep 2008) Log Message: ----------- Upgrade to Apache Ivy 2.0.0 RC 1 Modified Paths: -------------- ant-contrib/trunk/ivy.xml ant-contrib/trunk/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java Added Paths: ----------- ant-contrib/trunk/lib/ivy/jars/ivy-2.0.0-rc1.jar Removed Paths: ------------- ant-contrib/trunk/lib/ivy/jars/ivy-2.0.0-beta2.jar Modified: ant-contrib/trunk/ivy.xml =================================================================== --- ant-contrib/trunk/ivy.xml 2008-07-14 10:53:04 UTC (rev 173) +++ ant-contrib/trunk/ivy.xml 2008-09-26 12:36:25 UTC (rev 174) @@ -34,7 +34,7 @@ conf="default->default" /> <dependency org="apache" name="ivy" - rev="2.0.0-beta2" + rev="2.0.0-rc1" conf="default->default" /> <dependency org="jayasoft" name="ivy" Property changes on: ant-contrib/trunk/lib/ivy/jars/ivy-2.0.0-rc1.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Modified: ant-contrib/trunk/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java =================================================================== --- ant-contrib/trunk/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java 2008-07-14 10:53:04 UTC (rev 173) +++ ant-contrib/trunk/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java 2008-09-26 12:36:25 UTC (rev 174) @@ -20,7 +20,7 @@ configure.setOwningTarget(task.getOwningTarget()); configure.setTaskName(task.getTaskName()); configure.setOverride("true"); - configure.setId("urlimporttask"); + configure.setSettingsId("urlimporttask"); configure.init(); URL ivyConfUrl = task.getIvyConfUrl(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: SourceForge.net <no...@so...> - 2008-09-24 18:28:19
|
Bugs item #1428731, was opened at 2006-02-09 23:08 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=1428731&group_id=36177 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: logic Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Simon (simonru) Assigned to: Nobody/Anonymous (nobody) Summary: Problem with the Post task Initial Comment: "This task handles cookies correctly, which is useful for websites that set a session id to track logins or whatever. This means that if you do several posts in a row, cookies gathered from the first post will be returned with subsequent posts." This is not working. After I logged in and tried to do another post, I am prompted to log in again. I tried this on http://www.pdatopsoft.com/developers/ Also, is there a way to upload a file with the Post task? Thanks. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2008-09-24 18:28 Message: Not working for me either. Definitely broken. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=1428731&group_id=36177 |
From: Jon K. <in...@jo...> - 2008-09-23 20:19:00
|
I have attached the log. /Jon Jon Kristensen wrote: > Oh, I found something interesting now. I think someone here knows what > to do about this. > > If I change > > <fileset dir="${ogre4j.src.c}/src" includes="class_org_ogre4j_*.cpp"/> > > to > > <fileset dir="${ogre4j.src.c}/src" includes="class_org_ogre4j_A*.cpp"/> > > it starts the compiler but obviously fails later on as all the files > didn't get included. > > I really hope someone here knows what to do! > > Thanks! > > /Jon > > Jon Kristensen wrote: > >> Dear cpptasks developers: >> >> I'm trying to compile ogre4j* with the MinGW toolset (on Vista). >> ogre4j is meant to be compiled with Visual C++ but I didn't want to >> depend on those libraries. I enabled g++ by modifying a line to say >> "<condition property="cpp.compiler" value="g++">" and typed "ant" in >> the build directory. I got the following output: >> >> "C:\ogre4j\ogre4j-1.4.9-beta5-src>ant Buildfile: build.xml >> ogre4j.mkdir: >> ogre4j.build.c: [cc] 749 total files to be compiled. >> BUILD FAILED C:\ogre4j\ogre4j-1.4.9-beta5-src\build.xml:104: Could not >> launch gcc: java.io.IOException: Cannot run program "gcc" (in >> directory "C:\ogre4j\ogre4j-1.4.9-beta5-src\bin\c\release\obj"): >> CreateProcess error=206, The filename or extension is too long >> Total time: 0 seconds" >> >> What seems to be the problem here? Is there something wrong with the >> ogre4j build file (attached to this e-mail) or is there a problem with >> using MinGW? I have g++ in my path and can compile other programs with >> it. >> >> Thank you so much in advance! >> >> /Jon >> >> *) The ogre4j project can be found at http://ogre4j.sourceforge.net/. >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------- >> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge >> Build the coolest Linux based applications with Moblin SDK & win great prizes >> Grand prize is a trip for two to an Open Source event anywhere in the world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> Ant-contrib-developers mailing list >> Ant...@li... >> https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers >> > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Ant-contrib-developers mailing list > Ant...@li... > https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers > > |
From: Jon K. <in...@jo...> - 2008-09-23 19:25:05
|
OK, in a desperate attempt to solve my problem I managed to get rid of the "The filename or extension is too long" error by moving the content from "C:\ogre4j\ogre4j-1.4.9-beta5-src" to "C:\a" (!). However, I got a new error: C:\a\build.xml:105: Could not launch g++: java.io.IOException: Cannot run program "g++" (in directory "C:\a\bin\c\release\obj"): CreateProcess error=87, The parameter is incorrect I've been trying to find the cause of this error, and I came up with a couple of interesting sites, none of which helped me though. One idea was not to use * to specify the files (http://www.mail-archive.com/fle...@ya.../msg78968.html), another was avoiding to use spaces in filenames (http://www.igniterealtime.org/community/thread/32616) and the third (https://woodstock.dev.java.net/issues/show_bug.cgi?id=617) I didn't understand, but maybe you do? If not, do you have any suggestions on what I can do succeed with this build? Thank you in advance! /Jon Jon Kristensen wrote: > Dear cpptasks developers: > > I'm trying to compile ogre4j* with the MinGW toolset (on Vista). > ogre4j is meant to be compiled with Visual C++ but I didn't want to > depend on those libraries. I enabled g++ by modifying a line to say > "<condition property="cpp.compiler" value="g++">" and typed "ant" in > the build directory. I got the following output: > > "C:\ogre4j\ogre4j-1.4.9-beta5-src>ant Buildfile: build.xml > ogre4j.mkdir: > ogre4j.build.c: [cc] 749 total files to be compiled. > BUILD FAILED C:\ogre4j\ogre4j-1.4.9-beta5-src\build.xml:104: Could not > launch gcc: java.io.IOException: Cannot run program "gcc" (in > directory "C:\ogre4j\ogre4j-1.4.9-beta5-src\bin\c\release\obj"): > CreateProcess error=206, The filename or extension is too long > Total time: 0 seconds" > > What seems to be the problem here? Is there something wrong with the > ogre4j build file (attached to this e-mail) or is there a problem with > using MinGW? I have g++ in my path and can compile other programs with > it. > > Thank you so much in advance! > > /Jon > > *) The ogre4j project can be found at http://ogre4j.sourceforge.net/. > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > ------------------------------------------------------------------------ > > _______________________________________________ > Ant-contrib-developers mailing list > Ant...@li... > https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers |
From: Jon K. <in...@jo...> - 2008-09-23 18:57:21
|
Oh, I found something interesting now. I think someone here knows what to do about this. If I change <fileset dir="${ogre4j.src.c}/src" includes="class_org_ogre4j_*.cpp"/> to <fileset dir="${ogre4j.src.c}/src" includes="class_org_ogre4j_A*.cpp"/> it starts the compiler but obviously fails later on as all the files didn't get included. I really hope someone here knows what to do! Thanks! /Jon Jon Kristensen wrote: > Dear cpptasks developers: > > I'm trying to compile ogre4j* with the MinGW toolset (on Vista). > ogre4j is meant to be compiled with Visual C++ but I didn't want to > depend on those libraries. I enabled g++ by modifying a line to say > "<condition property="cpp.compiler" value="g++">" and typed "ant" in > the build directory. I got the following output: > > "C:\ogre4j\ogre4j-1.4.9-beta5-src>ant Buildfile: build.xml > ogre4j.mkdir: > ogre4j.build.c: [cc] 749 total files to be compiled. > BUILD FAILED C:\ogre4j\ogre4j-1.4.9-beta5-src\build.xml:104: Could not > launch gcc: java.io.IOException: Cannot run program "gcc" (in > directory "C:\ogre4j\ogre4j-1.4.9-beta5-src\bin\c\release\obj"): > CreateProcess error=206, The filename or extension is too long > Total time: 0 seconds" > > What seems to be the problem here? Is there something wrong with the > ogre4j build file (attached to this e-mail) or is there a problem with > using MinGW? I have g++ in my path and can compile other programs with > it. > > Thank you so much in advance! > > /Jon > > *) The ogre4j project can be found at http://ogre4j.sourceforge.net/. > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > ------------------------------------------------------------------------ > > _______________________________________________ > Ant-contrib-developers mailing list > Ant...@li... > https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers |
From: SourceForge.net <no...@so...> - 2008-09-18 17:56:59
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5291411 By: brianmurphy165 I should probably add that in the above files the "testMessage" target is actually run on the server. Also, and I thought I was going crazy, but after confirming with a colleague I remember that the above files were made as a quick proof of concept test for using this part of ant contrib a while back. I initially encountered an EOF Exception but immediately corrected it after I had dodgy syntax (I hadn't put the remoteant task inside a target - it was just sitting between the <project> tags) . After that these files worked and I passed them on to my colleague who says they also worked for her, then failed recently. The same is now happening for me after I dug these same files up from a few weeks back for a sanity check. Apologies for the vague narrative but this was 10 mins of my day a few weeks back and I thought I'd give you the full, unlikely, story. I can't think of what could have changed on my environment that could have prompted this. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=113701 |
From: Gump I. B. <ge...@gu...> - 2008-09-18 02:34:47
|
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at ge...@gu.... Project ant-contrib has an issue affecting its community integration. This issue affects 7 projects, and has been outstanding for 11 runs. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - ant-contrib : Useful little Ant tasks - ant-contrib-test : Useful little Ant tasks - antbook-diary-core : Examples to go with Java Development with Ant - invicta : Open-source build management tool. - logging-log4cxx-ant : Apache log4cxx - logging-log4cxx-ant-no_wchar_t : Apache log4cxx - logging-log4cxx-ant-static : Apache log4cxx Full details are available at: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -INFO- Failed with reason build failed -INFO- Failed to extract fallback artifacts from Gump Repository The following work was performed: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/gump_work/build_ant-contrib_ant-contrib.html Work Name: build_ant-contrib_ant-contrib (Type: Build) Work ended in a state of : Failed Elapsed: 4 secs Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-16092008.jar -Dno-ivy=no-ivy [Working Directory: /srv/gump/public/workspace/ant-contrib] CLASSPATH: /usr/lib/jvm/java-1.5.0-sun/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/httpcomponents/oac.hc3x/dist/commons-httpclient.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-16092008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-16092008.jar:/srv/gump/public/workspace/apache-commons/codec/dist/commons-codec-16092008.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-16092008.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar --------------------------------------------- Buildfile: /srv/gump/public/workspace/ant-contrib/build.xml init: configure: resolve: classpath-ivy: classpath-no-ivy: classpath: compile: [mkdir] Created dir: /srv/gump/public/workspace/ant-contrib/target/classes [javac] Compiling 112 source files to /srv/gump/public/workspace/ant-contrib/target/classes [javac] /srv/gump/public/workspace/ant-contrib/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java:23: cannot find symbol [javac] symbol : method setId(java.lang.String) [javac] location: class org.apache.ivy.ant.IvyConfigure [javac] configure.setId("urlimporttask"); [javac] ^ [javac] Note: Some input files use or override a deprecated API. [javac] Note: Recompile with -Xlint:deprecation for details. [javac] 1 error BUILD FAILED /srv/gump/public/workspace/ant-contrib/build.xml:112: Compile failed; see the compiler error output for details. Total time: 3 seconds --------------------------------------------- To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/rss.xml - Atom: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/atom.xml ============================== Gump Tracking Only === Produced by Gump version 2.3. Gump Run 11000016092008, vmgump:vmgump-public:11000016092008 Gump E-mail Identifier (unique within run) #53. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] |
From: Gump I. B. <ge...@gu...> - 2008-09-17 02:12:13
|
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at ge...@gu.... Project ant-contrib has an issue affecting its community integration. This issue affects 7 projects, and has been outstanding for 8 runs. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - ant-contrib : Useful little Ant tasks - ant-contrib-test : Useful little Ant tasks - antbook-diary-core : Examples to go with Java Development with Ant - invicta : Open-source build management tool. - logging-log4cxx-ant : Apache log4cxx - logging-log4cxx-ant-no_wchar_t : Apache log4cxx - logging-log4cxx-ant-static : Apache log4cxx Full details are available at: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -INFO- Failed with reason build failed -INFO- Failed to extract fallback artifacts from Gump Repository The following work was performed: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/gump_work/build_ant-contrib_ant-contrib.html Work Name: build_ant-contrib_ant-contrib (Type: Build) Work ended in a state of : Failed Elapsed: 4 secs Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-15092008.jar -Dno-ivy=no-ivy [Working Directory: /srv/gump/public/workspace/ant-contrib] CLASSPATH: /usr/lib/jvm/java-1.5.0-sun/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/httpcomponents/oac.hc3x/dist/commons-httpclient.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-15092008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-15092008.jar:/srv/gump/public/workspace/apache-commons/codec/dist/commons-codec-15092008.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-15092008.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar --------------------------------------------- Buildfile: /srv/gump/public/workspace/ant-contrib/build.xml init: configure: resolve: classpath-ivy: classpath-no-ivy: classpath: compile: [mkdir] Created dir: /srv/gump/public/workspace/ant-contrib/target/classes [javac] Compiling 112 source files to /srv/gump/public/workspace/ant-contrib/target/classes [javac] /srv/gump/public/workspace/ant-contrib/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java:23: cannot find symbol [javac] symbol : method setId(java.lang.String) [javac] location: class org.apache.ivy.ant.IvyConfigure [javac] configure.setId("urlimporttask"); [javac] ^ [javac] Note: Some input files use or override a deprecated API. [javac] Note: Recompile with -Xlint:deprecation for details. [javac] 1 error BUILD FAILED /srv/gump/public/workspace/ant-contrib/build.xml:112: Compile failed; see the compiler error output for details. Total time: 3 seconds --------------------------------------------- To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/rss.xml - Atom: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/atom.xml ============================== Gump Tracking Only === Produced by Gump version 2.3. Gump Run 08000015092008, vmgump:vmgump-public:08000015092008 Gump E-mail Identifier (unique within run) #53. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] |
From: SourceForge.net <no...@so...> - 2008-09-16 22:02:50
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5283605 By: brianmurphy165 I'm getting the same problem with almost identical files. In fact my "antClient.xml" equivalent just calls the "echoMessage" target and nothing more. I get the Exception below. Surely this is working for someone, if anyone has a full sample? Thanks, Brian runAntServer.xml ============= <project name="antServer" default="runAntServer"> <taskdef resource="net/sf/antcontrib/antcontrib.properties"> <classpath> <pathelement location="ant-contrib-1.0b3.jar"/> </classpath> </taskdef> <target name="runAntServer"> <antserver port="12345" /> </target> <target name="testMessage"> <echo message="Remotely run target." /> </target> </project> callRemoteTarget.xml =============== <project name="remoteClient" default="callServerTarget"> <taskdef resource="net/sf/antcontrib/antcontrib.properties"> <classpath> <pathelement location="ant-contrib-1.0b3.jar"/> </classpath> </taskdef> <target name="callServerTarget"> <remoteant machine="localhost" port="12345"> <runtarget target="testMessage"/> </remoteant> </target> </project> D:\Data\dev\antservertest>ant -v -f remoteclient.xml Apache Ant version 1.6.5 compiled on June 2 2005 Buildfile: remoteclient.xml Detected Java version: 1.5 in: C:\Program Files\Java\jdk1.6.0_03\jre Detected OS: Windows XP parsing buildfile D:\Data\dev\antservertest\remoteclient.xml with URI = file:/// D:/Data/dev/antservertest/remoteclient.xml Project base dir set to: D:\Data\dev\antservertest Build sequence for target(s) `callServerTarget' is [callServerTarget] Complete build sequence is [callServerTarget, ] callServerTarget: BUILD FAILED D:\Data\dev\antservertest\remoteclient.xml:9: java.io.EOFException at net.sf.antcontrib.antserver.client.ClientTask.execute(ClientTask.java :200) at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275) at org.apache.tools.ant.Task.perform(Task.java:364) at org.apache.tools.ant.Target.execute(Target.java:341) at org.apache.tools.ant.helper.ProjectHelper2.parse(ProjectHelper2.java: 142) at org.apache.tools.ant.ProjectHelper.configureProject(ProjectHelper.jav a:91) at org.apache.tools.ant.Main.runBuild(Main.java:653) at org.apache.tools.ant.Main.startAnt(Main.java:187) at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246) at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67) Caused by: java.io.EOFException at java.io.ObjectInputStream$BlockDataInputStream.peekByte(ObjectInputSt ream.java:2552) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1297) at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351) at net.sf.antcontrib.antserver.client.Client.sendCommand(Client.java:233 ) at net.sf.antcontrib.antserver.client.ClientTask.execute(ClientTask.java :144) ... 9 more --- Nested Exception --- java.io.EOFException at java.io.ObjectInputStream$BlockDataInputStream.peekByte(ObjectInputSt ream.java:2552) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1297) at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351) at net.sf.antcontrib.antserver.client.Client.sendCommand(Client.java:233 ) at net.sf.antcontrib.antserver.client.ClientTask.execute(ClientTask.java :144) at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275) at org.apache.tools.ant.Task.perform(Task.java:364) at org.apache.tools.ant.Target.execute(Target.java:341) at org.apache.tools.ant.helper.ProjectHelper2.parse(ProjectHelper2.java: 142) at org.apache.tools.ant.ProjectHelper.configureProject(ProjectHelper.jav a:91) at org.apache.tools.ant.Main.runBuild(Main.java:653) at org.apache.tools.ant.Main.startAnt(Main.java:187) at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246) at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67) ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=113701 |
From: Gump I. B. <ge...@gu...> - 2008-09-15 03:27:30
|
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at ge...@gu.... Project ant-contrib has an issue affecting its community integration. This issue affects 7 projects, and has been outstanding for 2 runs. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - ant-contrib : Useful little Ant tasks - ant-contrib-test : Useful little Ant tasks - antbook-diary-core : Examples to go with Java Development with Ant - invicta : Open-source build management tool. - logging-log4cxx-ant : Apache log4cxx - logging-log4cxx-ant-no_wchar_t : Apache log4cxx - logging-log4cxx-ant-static : Apache log4cxx Full details are available at: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -INFO- Failed with reason build failed -INFO- Failed to extract fallback artifacts from Gump Repository The following work was performed: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/gump_work/build_ant-contrib_ant-contrib.html Work Name: build_ant-contrib_ant-contrib (Type: Build) Work ended in a state of : Failed Elapsed: 6 secs Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-13092008.jar -Dno-ivy=no-ivy [Working Directory: /srv/gump/public/workspace/ant-contrib] CLASSPATH: /usr/lib/jvm/java-1.5.0-sun/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/httpcomponents/oac.hc3x/dist/commons-httpclient.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-13092008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-13092008.jar:/srv/gump/public/workspace/apache-commons/codec/dist/commons-codec-13092008.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-13092008.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar --------------------------------------------- Buildfile: /srv/gump/public/workspace/ant-contrib/build.xml init: configure: resolve: classpath-ivy: classpath-no-ivy: classpath: compile: [mkdir] Created dir: /srv/gump/public/workspace/ant-contrib/target/classes [javac] Compiling 112 source files to /srv/gump/public/workspace/ant-contrib/target/classes [javac] /srv/gump/public/workspace/ant-contrib/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java:23: cannot find symbol [javac] symbol : method setId(java.lang.String) [javac] location: class org.apache.ivy.ant.IvyConfigure [javac] configure.setId("urlimporttask"); [javac] ^ [javac] Note: Some input files use or override a deprecated API. [javac] Note: Recompile with -Xlint:deprecation for details. [javac] 1 error BUILD FAILED /srv/gump/public/workspace/ant-contrib/build.xml:112: Compile failed; see the compiler error output for details. Total time: 5 seconds --------------------------------------------- To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/rss.xml - Atom: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/atom.xml ============================== Gump Tracking Only === Produced by Gump version 2.3. Gump Run 16000013092008, vmgump:vmgump-public:16000013092008 Gump E-mail Identifier (unique within run) #52. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] |
From: Gump I. B. <ge...@gu...> - 2008-09-14 20:15:37
|
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at ge...@gu.... Project ant-contrib has an issue affecting its community integration. This issue affects 7 projects. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - ant-contrib : Useful little Ant tasks - ant-contrib-test : Useful little Ant tasks - antbook-diary-core : Examples to go with Java Development with Ant - invicta : Open-source build management tool. - logging-log4cxx-ant : Apache log4cxx - logging-log4cxx-ant-no_wchar_t : Apache log4cxx - logging-log4cxx-ant-static : Apache log4cxx Full details are available at: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -INFO- Failed with reason build failed -INFO- Failed to extract fallback artifacts from Gump Repository The following work was performed: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/gump_work/build_ant-contrib_ant-contrib.html Work Name: build_ant-contrib_ant-contrib (Type: Build) Work ended in a state of : Failed Elapsed: 5 secs Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-12092008.jar -Dno-ivy=no-ivy [Working Directory: /srv/gump/public/workspace/ant-contrib] CLASSPATH: /usr/lib/jvm/java-1.5.0-sun/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/httpcomponents/oac.hc3x/dist/commons-httpclient.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-12092008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-12092008.jar:/srv/gump/public/workspace/apache-commons/codec/dist/commons-codec-12092008.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-12092008.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar --------------------------------------------- Buildfile: /srv/gump/public/workspace/ant-contrib/build.xml init: configure: resolve: classpath-ivy: classpath-no-ivy: classpath: compile: [mkdir] Created dir: /srv/gump/public/workspace/ant-contrib/target/classes [javac] Compiling 112 source files to /srv/gump/public/workspace/ant-contrib/target/classes [javac] /srv/gump/public/workspace/ant-contrib/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java:23: cannot find symbol [javac] symbol : method setId(java.lang.String) [javac] location: class org.apache.ivy.ant.IvyConfigure [javac] configure.setId("urlimporttask"); [javac] ^ [javac] Note: Some input files use or override a deprecated API. [javac] Note: Recompile with -Xlint:deprecation for details. [javac] 1 error BUILD FAILED /srv/gump/public/workspace/ant-contrib/build.xml:112: Compile failed; see the compiler error output for details. Total time: 5 seconds --------------------------------------------- To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/rss.xml - Atom: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/atom.xml ============================== Gump Tracking Only === Produced by Gump version 2.3. Gump Run 08001612092008, vmgump:vmgump-public:08001612092008 Gump E-mail Identifier (unique within run) #4. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] |
From: Gump I. B. <ge...@gu...> - 2008-09-14 11:46:41
|
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at ge...@gu.... Project ant-contrib has an issue affecting its community integration. This issue affects 7 projects. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - ant-contrib : Useful little Ant tasks - ant-contrib-test : Useful little Ant tasks - antbook-diary-core : Examples to go with Java Development with Ant - invicta : Open-source build management tool. - logging-log4cxx-ant : Apache log4cxx - logging-log4cxx-ant-no_wchar_t : Apache log4cxx - logging-log4cxx-ant-static : Apache log4cxx Full details are available at: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -INFO- Failed with reason build failed -INFO- Failed to extract fallback artifacts from Gump Repository The following work was performed: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/gump_work/build_ant-contrib_ant-contrib.html Work Name: build_ant-contrib_ant-contrib (Type: Build) Work ended in a state of : Failed Elapsed: 5 secs Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-12092008.jar -Dno-ivy=no-ivy [Working Directory: /srv/gump/public/workspace/ant-contrib] CLASSPATH: /usr/lib/jvm/java-1.5.0-sun/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/httpcomponents/oac.hc3x/dist/commons-httpclient.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-12092008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-12092008.jar:/srv/gump/public/workspace/apache-commons/codec/dist/commons-codec-12092008.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-12092008.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar --------------------------------------------- Buildfile: /srv/gump/public/workspace/ant-contrib/build.xml init: configure: resolve: classpath-ivy: classpath-no-ivy: classpath: compile: [mkdir] Created dir: /srv/gump/public/workspace/ant-contrib/target/classes [javac] Compiling 112 source files to /srv/gump/public/workspace/ant-contrib/target/classes [javac] /srv/gump/public/workspace/ant-contrib/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java:23: cannot find symbol [javac] symbol : method setId(java.lang.String) [javac] location: class org.apache.ivy.ant.IvyConfigure [javac] configure.setId("urlimporttask"); [javac] ^ [javac] Note: Some input files use or override a deprecated API. [javac] Note: Recompile with -Xlint:deprecation for details. [javac] 1 error BUILD FAILED /srv/gump/public/workspace/ant-contrib/build.xml:112: Compile failed; see the compiler error output for details. Total time: 4 seconds --------------------------------------------- To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/rss.xml - Atom: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/atom.xml ============================== Gump Tracking Only === Produced by Gump version 2.3. Gump Run 14000812092008, vmgump:vmgump-public:14000812092008 Gump E-mail Identifier (unique within run) #4. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] |
From: Gump I. B. <ge...@gu...> - 2008-09-13 02:40:26
|
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at ge...@gu.... Project ant-contrib has an issue affecting its community integration. This issue affects 7 projects, and has been outstanding for 5 runs. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - ant-contrib : Useful little Ant tasks - ant-contrib-test : Useful little Ant tasks - antbook-diary-core : Examples to go with Java Development with Ant - invicta : Open-source build management tool. - logging-log4cxx-ant : Apache log4cxx - logging-log4cxx-ant-no_wchar_t : Apache log4cxx - logging-log4cxx-ant-static : Apache log4cxx Full details are available at: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -INFO- Failed with reason build failed -INFO- Failed to extract fallback artifacts from Gump Repository The following work was performed: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/gump_work/build_ant-contrib_ant-contrib.html Work Name: build_ant-contrib_ant-contrib (Type: Build) Work ended in a state of : Failed Elapsed: 5 secs Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-11092008.jar -Dno-ivy=no-ivy [Working Directory: /srv/gump/public/workspace/ant-contrib] CLASSPATH: /usr/lib/jvm/java-1.5.0-sun/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/httpcomponents/oac.hc3x/dist/commons-httpclient.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-11092008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-11092008.jar:/srv/gump/public/workspace/apache-commons/codec/dist/commons-codec-11092008.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-11092008.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar --------------------------------------------- Buildfile: /srv/gump/public/workspace/ant-contrib/build.xml init: configure: resolve: classpath-ivy: classpath-no-ivy: classpath: compile: [mkdir] Created dir: /srv/gump/public/workspace/ant-contrib/target/classes [javac] Compiling 112 source files to /srv/gump/public/workspace/ant-contrib/target/classes [javac] /srv/gump/public/workspace/ant-contrib/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java:23: cannot find symbol [javac] symbol : method setId(java.lang.String) [javac] location: class org.apache.ivy.ant.IvyConfigure [javac] configure.setId("urlimporttask"); [javac] ^ [javac] Note: Some input files use or override a deprecated API. [javac] Note: Recompile with -Xlint:deprecation for details. [javac] 1 error BUILD FAILED /srv/gump/public/workspace/ant-contrib/build.xml:112: Compile failed; see the compiler error output for details. Total time: 3 seconds --------------------------------------------- To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/rss.xml - Atom: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/atom.xml ============================== Gump Tracking Only === Produced by Gump version 2.3. Gump Run 21000011092008, vmgump:vmgump-public:21000011092008 Gump E-mail Identifier (unique within run) #52. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] |
From: Jack W. <ja...@we...> - 2008-09-12 06:17:11
|
Bharath wrote: > I'm using the ant contrib's <trycatch> task in an ANT script. My goal > is to invoke a Java class within the <try> block and catch an > exception if my Java class throws one in my <catch> block. Hi Bharath -- W/r/t Ant-contrib <trycatch> , here is a snippet from the documentation: /This mirrors Java's try/catch/finally. / "Mirrors" meaning to say "is analogous to". /The tasks inside of the required |<try>| element will be run. If one of them should throw a BuildException several things can happen:/ ... etc. Does your failing Java class test throw an Ant-contrib BuildException? I take the documentation to mean that only a BuildException being thrown will be caught in the <catch> block. It is not a universal Java try/catch facility. -- Jack J. Woehr # "Self-delusion is http://www.well.com/~jax # half the battle!" http://www.softwoehr.com # - Zippy the Pinhead |
From: Gump I. B. <ge...@gu...> - 2008-09-12 02:46:18
|
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at ge...@gu.... Project ant-contrib has an issue affecting its community integration. This issue affects 7 projects, and has been outstanding for 3 runs. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - ant-contrib : Useful little Ant tasks - ant-contrib-test : Useful little Ant tasks - antbook-diary-core : Examples to go with Java Development with Ant - invicta : Open-source build management tool. - logging-log4cxx-ant : Apache log4cxx - logging-log4cxx-ant-no_wchar_t : Apache log4cxx - logging-log4cxx-ant-static : Apache log4cxx Full details are available at: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -INFO- Failed with reason build failed -INFO- Failed to extract fallback artifacts from Gump Repository The following work was performed: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/gump_work/build_ant-contrib_ant-contrib.html Work Name: build_ant-contrib_ant-contrib (Type: Build) Work ended in a state of : Failed Elapsed: 5 secs Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-10092008.jar -Dno-ivy=no-ivy [Working Directory: /srv/gump/public/workspace/ant-contrib] CLASSPATH: /usr/lib/jvm/java-1.5.0-sun/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/httpcomponents/oac.hc3x/dist/commons-httpclient.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-10092008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-10092008.jar:/srv/gump/public/workspace/apache-commons/codec/dist/commons-codec-10092008.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-10092008.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar --------------------------------------------- Buildfile: /srv/gump/public/workspace/ant-contrib/build.xml init: configure: resolve: classpath-ivy: classpath-no-ivy: classpath: compile: [mkdir] Created dir: /srv/gump/public/workspace/ant-contrib/target/classes [javac] Compiling 112 source files to /srv/gump/public/workspace/ant-contrib/target/classes [javac] /srv/gump/public/workspace/ant-contrib/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java:23: cannot find symbol [javac] symbol : method setId(java.lang.String) [javac] location: class org.apache.ivy.ant.IvyConfigure [javac] configure.setId("urlimporttask"); [javac] ^ [javac] Note: Some input files use or override a deprecated API. [javac] Note: Recompile with -Xlint:deprecation for details. [javac] 1 error BUILD FAILED /srv/gump/public/workspace/ant-contrib/build.xml:112: Compile failed; see the compiler error output for details. Total time: 4 seconds --------------------------------------------- To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/rss.xml - Atom: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/atom.xml ============================== Gump Tracking Only === Produced by Gump version 2.3. Gump Run 11000010092008, vmgump:vmgump-public:11000010092008 Gump E-mail Identifier (unique within run) #53. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] |
From: Bharath <bha...@gm...> - 2008-09-12 01:38:38
|
Got it. Let me throw an ant contrib BuildException and try to catch it. Appreciate the response! On Thu, Sep 11, 2008 at 11:08 PM, Jack Woehr <ja...@we...> wrote: > Bharath wrote: > > I'm using the ant contrib's <trycatch> task in an ANT script. My goal is to > invoke a Java class within the <try> block and catch an exception if my Java > class throws one in my <catch> block. > > Hi Bharath -- > > W/r/t Ant-contrib <trycatch> , here is a snippet from the documentation: > > *This mirrors Java's try/catch/finally. > * > > "Mirrors" meaning to say "is analogous to". > > *The tasks inside of the required <try> element will be run. If one of > them should throw a BuildException several things can happen:* > > ... etc. > > Does your failing Java class test throw an Ant-contrib BuildException? I > take the documentation > to mean that only a BuildException being thrown will be caught in the > <catch> block. It is not > a universal Java try/catch facility. > > -- > Jack J. Woehr # "Self-delusion ishttp://www.well.com/~jax <http://www.well.com/%7Ejax> # half the battle!"http://www.softwoehr.com # - Zippy the Pinhead > > |
From: Gump I. B. <ge...@gu...> - 2008-09-11 10:59:32
|
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at ge...@gu.... Project ant-contrib has an issue affecting its community integration. This issue affects 7 projects. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - ant-contrib : Useful little Ant tasks - ant-contrib-test : Useful little Ant tasks - antbook-diary-core : Examples to go with Java Development with Ant - invicta : Open-source build management tool. - logging-log4cxx-ant : Apache log4cxx - logging-log4cxx-ant-no_wchar_t : Apache log4cxx - logging-log4cxx-ant-static : Apache log4cxx Full details are available at: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -INFO- Failed with reason build failed -INFO- Failed to extract fallback artifacts from Gump Repository The following work was performed: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/gump_work/build_ant-contrib_ant-contrib.html Work Name: build_ant-contrib_ant-contrib (Type: Build) Work ended in a state of : Failed Elapsed: 5 secs Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-09092008.jar -Dno-ivy=no-ivy [Working Directory: /srv/gump/public/workspace/ant-contrib] CLASSPATH: /usr/lib/jvm/java-1.5.0-sun/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/httpcomponents/oac.hc3x/dist/commons-httpclient.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-09092008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-09092008.jar:/srv/gump/public/workspace/apache-commons/codec/dist/commons-codec-09092008.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-09092008.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar --------------------------------------------- Buildfile: /srv/gump/public/workspace/ant-contrib/build.xml init: configure: resolve: classpath-ivy: classpath-no-ivy: classpath: compile: [mkdir] Created dir: /srv/gump/public/workspace/ant-contrib/target/classes [javac] Compiling 112 source files to /srv/gump/public/workspace/ant-contrib/target/classes [javac] /srv/gump/public/workspace/ant-contrib/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java:23: cannot find symbol [javac] symbol : method setId(java.lang.String) [javac] location: class org.apache.ivy.ant.IvyConfigure [javac] configure.setId("urlimporttask"); [javac] ^ [javac] Note: Some input files use or override a deprecated API. [javac] Note: Recompile with -Xlint:deprecation for details. [javac] 1 error BUILD FAILED /srv/gump/public/workspace/ant-contrib/build.xml:112: Compile failed; see the compiler error output for details. Total time: 4 seconds --------------------------------------------- To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/rss.xml - Atom: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/atom.xml ============================== Gump Tracking Only === Produced by Gump version 2.3. Gump Run 14000809092008, vmgump:vmgump-public:14000809092008 Gump E-mail Identifier (unique within run) #26. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] |
From: Gump I. B. <ge...@gu...> - 2008-09-11 02:46:49
|
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at ge...@gu.... Project ant-contrib has an issue affecting its community integration. This issue affects 7 projects. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - ant-contrib : Useful little Ant tasks - ant-contrib-test : Useful little Ant tasks - antbook-diary-core : Examples to go with Java Development with Ant - invicta : Open-source build management tool. - logging-log4cxx-ant : Apache log4cxx - logging-log4cxx-ant-no_wchar_t : Apache log4cxx - logging-log4cxx-ant-static : Apache log4cxx Full details are available at: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -INFO- Failed with reason build failed -INFO- Failed to extract fallback artifacts from Gump Repository The following work was performed: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/gump_work/build_ant-contrib_ant-contrib.html Work Name: build_ant-contrib_ant-contrib (Type: Build) Work ended in a state of : Failed Elapsed: 5 secs Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-09092008.jar -Dno-ivy=no-ivy [Working Directory: /srv/gump/public/workspace/ant-contrib] CLASSPATH: /usr/lib/jvm/java-1.5.0-sun/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/httpcomponents/oac.hc3x/dist/commons-httpclient.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-09092008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-09092008.jar:/srv/gump/public/workspace/apache-commons/codec/dist/commons-codec-09092008.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-09092008.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar --------------------------------------------- Buildfile: /srv/gump/public/workspace/ant-contrib/build.xml init: configure: resolve: classpath-ivy: classpath-no-ivy: classpath: compile: [mkdir] Created dir: /srv/gump/public/workspace/ant-contrib/target/classes [javac] Compiling 112 source files to /srv/gump/public/workspace/ant-contrib/target/classes [javac] /srv/gump/public/workspace/ant-contrib/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java:23: cannot find symbol [javac] symbol : method setId(java.lang.String) [javac] location: class org.apache.ivy.ant.IvyConfigure [javac] configure.setId("urlimporttask"); [javac] ^ [javac] Note: Some input files use or override a deprecated API. [javac] Note: Recompile with -Xlint:deprecation for details. [javac] 1 error BUILD FAILED /srv/gump/public/workspace/ant-contrib/build.xml:112: Compile failed; see the compiler error output for details. Total time: 4 seconds --------------------------------------------- To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/rss.xml - Atom: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib/atom.xml ============================== Gump Tracking Only === Produced by Gump version 2.3. Gump Run 19000009092008, vmgump:vmgump-public:19000009092008 Gump E-mail Identifier (unique within run) #55. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] |
From: Bharath <bha...@gm...> - 2008-09-10 07:49:38
|
Hi there, I'm using the ant contrib's <trycatch> task in an ANT script. My goal is to invoke a Java class within the <try> block and catch an exception if my Java class throws one in my <catch> block. If I catch the exception, I want to set a flag for another target. I'm using the ant-contrib.jar version 1.0 beta2. My Java class does throw an exception but my catch block doesn't catch it. I'm pasting my ant target below. Please let me know if you have any suggestions. <taskdef resource="net/sf/antcontrib/antlib.xml"/> <target name="chkTLP"> <trycatch> <try> <!-- Call the java class here and catch an exception if thrown --> </try> <catch> <echo message = "Error caught"/> <!-- The exception thrown by the java class is printed on the log file but control never gets to this catch block! --> </catch> </trycatch> </target> What am I missing? Thanks, Bharath |