RE: Xms memory limit problem

2007-09-13 Thread Rebhan, Gilbert
Hi, -Original Message- From: PHILIPPE Johan [mailto:[EMAIL PROTECTED] Sent: Friday, September 14, 2007 8:45 AM To: Ant Users List; Mitja B. Subject: RE: Xms memory limit problem /* There is indeed an attribute to set the maximum memory, But for minimum (starting) memory use: */ the

AW: Import build files from a jar?

2007-09-13 Thread Jan.Materne
We thought about extending to get a resource (JAR, URL, ...), but there is one "problem": a project must have a basedir from where you could do calculate all the paths. Not really easy - if possible. What is "/"? So you cant use the bunch of buildfiles from an archive. But you can extract thes

RE: Xms memory limit problem

2007-09-13 Thread PHILIPPE Johan
There is indeed an attribute to set the maximum memory, But for minimum (starting) memory use: > -Original Message- > From: Rebhan, Gilbert [mailto:[EMAIL PROTECTED] > Sent: woensdag 12 september 2007 16:01 > To: Ant Users List; Mitja B. > Subject: RE: Xms memory limit problem > > > >

AW: Exception: AxisFault during deployment Connection Refused

2007-09-13 Thread Jan.Materne
Wrong list ;-) Here is Ant - not Axis ... Jan >-Ursprüngliche Nachricht- >Von: david [mailto:[EMAIL PROTECTED] >Gesendet: Donnerstag, 13. September 2007 16:51 >An: user@ant.apache.org >Betreff: Exception: AxisFault during deployment Connection Refused > >Hello Ann, Steve, all axis dev

ant compile problem

2007-09-13 Thread Mitja B.
Hi, ircbutton.java has this lines package irc.irc2000.ircSwing.komponente; import irc.kis.view.dm.sifranti.TipiDelovnihMestTabela; i am running ant compile under Model2000 project direktorij, but this packages are ubder ../View/src/irc... now i get error like this [javac] C:\Projekti

AW: ant-1.6.5; need to add tools.jar to system classpath

2007-09-13 Thread Rainer Noack
Offline for some days... Maybe, http://enitsys.sourceforge.net/ant-classloadertask/ will solve your problem. Cheers, Rainer -Ursprüngliche Nachricht- Von: Vladimir Egorov [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 12. September 2007 17:47 An: Ant Users List Betreff: RE: ant-1.6.

Re: org.apache.tools.ant.taskdefs.Execute and segafult

2007-09-13 Thread venki
Thanks. I will also try with ant-contrib's shellscript task. Peter Reilly-2 wrote: > > On 9/13/07, Bruce Atherton <[EMAIL PROTECTED]> wrote: >> It is entirely possible that the output never reaches Ant. The standard >> C library is typically set up to buffer data on the standard file >> handles

Re: org.apache.tools.ant.taskdefs.Execute and segafult

2007-09-13 Thread venki
Thanks. I will write SIGSEGV handler in the C program and see how it works. Bruce Atherton wrote: > > It is entirely possible that the output never reaches Ant. The standard > C library is typically set up to buffer data on the standard file > handles, for efficiency purposes. > > To get aro

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

2007-09-13 Thread Peter Reilly
On 9/13/07, Loehr, Ruel <[EMAIL PROTECTED]> wrote: > You can do the following. > > 1) Checkout cruisecontrol or Hudson.- nightly build servers, > Hudson is easier to setup for new people +1 hudson is awesome! Peter > > They'll handle what you are trying to do without jumping through hoops. >

Re: org.apache.tools.ant.taskdefs.Execute and segafult

2007-09-13 Thread Peter Reilly
On 9/13/07, Bruce Atherton <[EMAIL PROTECTED]> wrote: > It is entirely possible that the output never reaches Ant. The standard > C library is typically set up to buffer data on the standard file > handles, for efficiency purposes. > > To get around this, you could: > > 1) do a flush() on the std

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

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

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

2007-09-13 Thread Steve Whatmore
Good afternoon, I am trying to setup an automated build process complete with JUnit for a web application that I am developing. I would like email the results of both the compile step and the JUnit step to a development distribution list that I have setup. I must be missing something be

Re: org.apache.tools.ant.taskdefs.Execute and segafult

2007-09-13 Thread Bruce Atherton
It is entirely possible that the output never reaches Ant. The standard C library is typically set up to buffer data on the standard file handles, for efficiency purposes. To get around this, you could: 1) do a flush() on the stdout and stderr streams before the segmentation fault (assuming

using vssget to copy over existing files

2007-09-13 Thread weiji
Hi, I'm using vssget to get a project from the server to my workstation. However, it returns with error code 100. If I point the local directory to an empty directory, all the files are gotten without any issues. This leads me to believe the issue is with overwriting the existing files. Does

Re: supressing output

2007-09-13 Thread Gilbert Rebhan
Hi, phil swenson wrote: I have an external build.xml file that I am calling from my build.xml... unfortunately this target outputs a whole bunch of stuff I don't care about and it pollutes my build log files. What I want is just error output... anyone have any thoughts on supressing the output?

Import build files from a jar?

2007-09-13 Thread Scot P. Floess
I was wondering if its possible to import build files from a Jar file? For instance, lets "assume" I wrote a bunch of re-usable Ant scripts, placed them in a zip/jar file and wanted to import a build.xml from said zip/jar file... The import task doesn't seem to work this way... Is there some

supressing output

2007-09-13 Thread phil swenson
I have an external build.xml file that I am calling from my build.xml... unfortunately this target outputs a whole bunch of stuff I don't care about and it pollutes my build log files. What I want is just error output... anyone have any thoughts on supressing the output? thanks phil -- View thi

Exception: AxisFault during deployment Connection Refused

2007-09-13 Thread david
Hello Ann, Steve, all axis dev and users, I have a curious situation with my attempts to deploy an axis ws packaged as a JAR file. The question is: how to deploy on running axis server? The jar is placed into the WEB-INF/classes directory as instructed at step 5: http://ws.apache.org/axis/java/

When using ExecuteJava in other class, JVM don't allow to create streams.

2007-09-13 Thread Alexey Mel'nikoff
I try to create ant task which launch java in separate VM with specified paramaters. Java executing class, which creates output and input streams. When I did it from task, all works, but when I try to use it in my task, streams are not created. And class from lib can't work with files and user inp

Re: Sorted Fileset

2007-09-13 Thread Steve Loughran
Knuplesch wrote: Hello, To create a correct classpath it is sometimes necessary to order the .jar-Files in the right sequence. A fileset does not give the guarantee about the sequence. no, it doesnt, What we have ist a directory with .jar-Files that should be included into the classpath.

Re: Deleting directories using restrict

2007-09-13 Thread Andreas Held
Since nobody took this up, I will add some more information. Looking into the Ant sources (V1.7.0, Delete.java) shows the following snippet: if (resourcesToDelete.isFilesystemOnly()) { for (Iterator iter = resourcesToDelete.iterator(); iter.hasNext();) { FileResource r = (FileResource)

RE: package compile problem

2007-09-13 Thread Mitja B.
hej, nono this is just name for business aplication in our language :D by -- L.P. Mitja B. - Original Message From: Ant Users List To: Ant Users List Subject: RE: package compile problem Date: 13/09/07 12:00 > "TipiDelovnihMestTabela" > > sounds like something out of Harry

RE: Sorted Fileset

2007-09-13 Thread Rebhan, Gilbert
Hi, -Original Message- From: Knuplesch, Jürgen [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 10:52 AM To: user@ant.apache.org Subject: Sorted Fileset /* Hello, To create a correct classpath it is sometimes necessary to order the .jar-Files in the right sequence. A fil

CVS Revision Logs

2007-09-13 Thread basu
Hi, I want to get the list of CVS files which have been changed between two particular timestamps. I used cvstagdiff and cvschangelog but not yielding the expected result.I am getting the output in the xml format but I need list of files in the following format.Please help to generate the output i

RE: package compile problem

2007-09-13 Thread RADEMAKERS Tanguy
"TipiDelovnihMestTabela" sounds like something out of Harry Potter ;) /t ps: sorry, couldn't resist. >-Original Message- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Sent: Thursday, September 13, 2007 11:56 AM >To: user@ant.apache.org; [EMAIL PROTECTED] >Subject: AW: package c

AW: package compile problem

2007-09-13 Thread Jan.Materne
1. TipiDelovnihMestTabela must be compiled (seems to be part of another project) 2. Add the root directory of that class or the jar containing that class to your classpath Jan >-Ursprüngliche Nachricht- >Von: Mitja B. [mailto:[EMAIL PROTECTED] >Gesendet: Donnerstag,

package compile problem

2007-09-13 Thread Mitja B.
Hi, ircbutton.java has this lines ... package irc.irc2000.ircSwing.komponente; import irc.kis.view.dm.sifranti.TipiDelovnihMestTabela; ... i am running ant compile under Model2000 project direktorij, but this packages are ubder ../View/src/irc... now i get error like this [javac] C:\Projekti\

AW: Sorted Fileset

2007-09-13 Thread Jan.Materne
Classpath is a path and not a fileset (it can contain filesets). With Ant 1.7 classpath is a kind of resource collection. RCs are sortable. With Ant 1.7 most tasks are RC-aware. Paths can contain RCs. So you should create your "sorted fileset" via RCs. http://ant.apache.org/manual/CoreTypes/resou

Uses of Ant tag

2007-09-13 Thread Pan Zupa
Hello, i found in doc's tag but no example how to use it. Can anybody help me? Maybe some example :thinking: I want to make incremental build, it means: - it checks what .java files has changed since last build - it checks what .java files has been removed - so it deletes generated before clas

Sorted Fileset

2007-09-13 Thread Knuplesch , Jürgen
Hello, To create a correct classpath it is sometimes necessary to order the .jar-Files in the right sequence. A fileset does not give the guarantee about the sequence. What we have ist a directory with .jar-Files that should be included into the classpath. Then I build the classpath by doing a

Re: org.apache.tools.ant.taskdefs.Execute and segafult

2007-09-13 Thread Steve Loughran
venki wrote: Hi, I am using org.apache.tools.ant.taskdefs.Execute combined with org.apache.tools.ant.taskdefs.PumpStreamHandler to execute an external C program. When the external C program segfaults, I am not able to to see any output that came from the external C program before it segfaults. Al

ant compile whole Jdeveloper project

2007-09-13 Thread Mitja B.
Hi, Is it possible that ant compile whole jdeveloper project. project have 3 different applications. Model Model x200 View I need to compile java files in all of three becouse they are connected to each other but i do not know if ant can do this and how? -- L.P. Mitja B.