Re: Issue accessing apache.org

2021-05-12 Thread Greg Stein
only annoying those lists. On May 9, Daniel Gruno informed you of the problem. Respond there. Regards, Greg Stein Infrastructure Administrator, ASF On Wed, May 12, 2021 at 12:21 AM Shete, Laxmikant wrote: > Hi All, > > > > Please let me know if anyone is working on this. > &

What are the plans for Ant 2.0?

2015-09-07 Thread Greg Hall
Hi. I can't find any reference to any plans for 2.0 on the ant site. Having used ant for a long time, I have some ideas on stuff I'd like to see in the 2.0 release when it comes out. Is this the right mailing list to discuss this on? Tx.

Re: task

2012-03-15 Thread Greg Brown
time, so I wrote it > so that it continued to generate headers for nested classes. Greg On Mar 13, 2012, at 1:28 PM, Greg Brown wrote: >> The implementation of Ant's javah task doesn't even check which version >> of Java you are using. If this is a

Re: task

2012-03-13 Thread Greg Brown
ou run Ant -verbose it should give you the literal command line it > passes to javah. I wouldn't expect it to contain your nested classes. I'll try that and let you know what I find out. Thanks! Greg - To

task

2012-03-13 Thread Greg Brown
actually define any native methods. Was this change intentional? I personally prefer the Java 6 behavior and I'm wondering if there might be a way to re-enable it in Java 7. Thanks, Greg - To unsubscribe, e-mail: user-uns

Advanced Regexp Question

2012-01-06 Thread Greg . Zoller
*)\]" require(["a","foo/b","bar/c"], function(){...}) (I can't just do a global replace on "foo" because I only want to do the replacement in this "require" co

Re: Rhino global.load() in script context

2010-08-23 Thread Greg Roodt
No problem. I had fun discovering how to make it work. I like the macro idea btw. Cheers Greg On 22 Aug 2010 14:03, "Jacob Beard" wrote: > Hi Greg, > > I'll bring it up on the developer's list. > > I've created a macro that sets up the rhino environmen

Re: Rhino global.load() in script context

2010-08-22 Thread Greg Roodt
what they think. It might be that the Global stuff can be made available which will then make javascript and the tag much more powerful. Or they might suggest creating a new Ant task or something. Cheers Greg On Sat, Aug 21, 2010 at 11:44 PM, Jacob Beard wrote: > Hi Greg, > >

Re: Rhino global.load() in script context

2010-08-21 Thread Greg Roodt
uot;version:"+ver); print(this); for(var prop in this){ print(prop); } } a(); On Sat, Aug 21, 2010 at 7:03 PM, Jacob Beard wrote: > Hi Greg, > > Thanks for your response. Replies below: > > > On 10-08-21 01:41 PM, Greg Roodt wrote: > >> I believe load() is

Re: Rhino global.load() in script context

2010-08-21 Thread Greg Roodt
I believe load() is part of Rhino Shell. I think all that the task runs when using JavaScript is the interpreter. It would only have the pure Javascript standard language features (and a few bits and pieces to interact with Java and the execution context). It might be easier to run the shell for

Re: using recent Rhino in ant script

2010-08-21 Thread Greg Roodt
I've got it working doing using the following Ant project: echo = helloworld.createTask("echo");

Re: SCP Task

2010-04-27 Thread Greg Roodt
Is that Ant 1.7.1? I've used it without problems. The task can be found in ant-jsch.jar. On Tue, Apr 27, 2010 at 4:52 PM, David Weintraub wrote: > Does the SCP task work? We use Ant 1.7 and recently tried the > task. We included the jsch.jar, but we got the following error: > > BUILD FAILED

Re: Two pass compile for instrumented code

2010-04-14 Thread Greg Roodt
On Tue, Apr 13, 2010 at 7:51 PM, Antoine Levy-Lambert wrote: > > Original-Nachricht > > Datum: Tue, 13 Apr 2010 17:37:37 +0100 > > Von: Greg Roodt > > An: Ant Users List > > Betreff: Two pass compile for instrumented code > > > Hi >

Two pass compile for instrumented code

2010-04-13 Thread Greg Roodt
e got it working, but I've got a lot of duplication and Im sure theres a tidier way to do it. Basically what Im after is 2 targets: run-tests: compile, test release: compile, test, package, report Without duplicating too much in compile and test. Cheers Greg

Re: Need help with jdk1.6.0_11 build

2010-04-02 Thread Greg Roodt
JDK 1.6.0u11can be found here: http://java.sun.com/products/archive/j2se/6u11/index.html It is possible to run Ant with a particular version of Java (using JAVA_HOME or other) and then use "fork" in javac to specify an alternative version of the Java compiler for the build. The documentation of t

Re: Cobertura

2010-03-09 Thread Greg Roodt
http://cobertura.sourceforge.net/anttaskreference.html The Cobertura task is a 3rd party Ant task and not part of core Ant. You will probably have more luck looking at the Cobertura documentation. Kind Regards Greg Roodt On Tue, Mar 9, 2010 at 6:50 AM, Irfan Sayed wrote: > Hi All, >

Re: Need help viewing output from failed ant/junit tests

2010-03-05 Thread Greg Roodt
Greg On Fri, Mar 5, 2010 at 4:17 PM, Stefan Bodewig wrote: > On 2010-03-05, Bill Moran wrote: > > > > > > timeout="1" maxmemory="512m" haltonfailure="no" > > tempdir="/tmp" failurePrope

Re: Need help viewing output from failed ant/junit tests

2010-03-05 Thread Greg Roodt
Ant normally captures stdout. Have you tried the xml formatter? It looks like your test is failing because its timing out, does it pass if you remove the timeout? Also, is there a reason you are using sysout rather than a logging framework like log4J? Cheers Greg On Fri, Mar 5, 2010 at 2:35

RE: Windows 7 and ant exec task

2009-12-22 Thread Thompson, Greg D. (LNG-DFW)
The .bat file works fine on Server 2003 and XP. It doesn't work on Windows 7. Thanks, Greg -Original Message- From: jan.mate...@rzf.fin-nrw.de [mailto:jan.mate...@rzf.fin-nrw.de] Sent: Tuesday, December 22, 2009 8:03 AM To: user@ant.apache.org Subject: AW: Windows 7 and ant

RE: Windows 7 and ant exec task

2009-12-22 Thread Thompson, Greg D. (LNG-DFW)
Zzz is a .bat file. If I specify the full path of zzz, it executes fine. I'd rather not use the full path. The path to the executable will be different on the dev workstations and the build/ci server. Thanks, Greg -Original Message- From: Antoine Levy Lambert [mailto:anto...@g

Windows 7 and ant exec task

2009-12-21 Thread Thompson, Greg D. (LNG-DFW)
I'm using Windows 7. When I use the ant exec task, I get Cannot run program "zzz": CreateProcess error=2, The system cannot find the file specified. When I run the program "zzz" from the command line, it works fine. The folder that program "zzz" is in is in my path env variable. Ant versio

Re: Build fail

2009-11-24 Thread Greg Roodt
>                   > > > test-unit: >     [echo] running unit tests for project server >    [junit] Testsuite: > com.test.server.NetworkServerInitialisationUnitTestCase >    [junit] Tests run: 4, Failures: 0, Errors: 1, Time elapsed: 0.346 sec >    [junit] >    [junit] Testcase: > TestTheServerIsNotConnected(com.t

Re: Build fail

2009-11-24 Thread Greg Roodt
Ant has resolved your variables references. Your "if" should look like this: On Tue, Nov 24, 2009 at 7:32 PM, Ben Cuthbert wrote: > Yes I got the following error running in debug > > test-unit: > Skipped because property 'true' not set. > > > ant build -Dunit.test=true -verbose > > What is th

Re: Build fail

2009-11-23 Thread Greg Roodt
                    > >                                         usefile="false" /> > >                                         >                                                 >                                                         name="**/*AcceptenceTestCase.java" /> >

Re: Build fail

2009-11-22 Thread Greg Roodt
7: Test failed!!! >>> >>> >>> >>> On 21 Nov 2009, at 16:33, Ben Cuthbert wrote: >>> >>> Yes so I have the following line in the same target at the end, I see the >>>> >>>> unit test error but the build does not stop >>>> >>>> >>>> >>>>       >>>> >>>> >>>> On 21 Nov 2009, at 10:05, Greg Roodt wrote: >>>> >>>> >>>>> >>>> >>>> >>> > > - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org

Re: Build fail

2009-11-21 Thread Greg Roodt
Are you picking up your tests.failures property somewhere to fail the build? e.g. On Sat, Nov 21, 2009 at 8:43 AM, Ben Cuthbert wrote: > When one of my unit tests fail the build is still successful. But in my ant > config I have the following > > failureproperty="tests.failures" errorpropert

Re: Need help!! Ant find duplicate files

2009-11-11 Thread Greg Roodt
Adam's suggestion of a script is probably going to be the simplest solution. Another option may be to take a look at the Checksum task and generate MD5 hashes for the files, then compare the MD5 hash values for each file, if the values are equal, then you know you have a duplicate. You could then

Re: Unable to run simple java file using Ant

2009-10-10 Thread Greg Roodt
Yes, you can place the source somewhere else, but Im not going to tell you how. I think it would be best for you to learn how to do this yourself. Study what your existing build.xml is doing by looking at the task references here: http://ant.apache.org/manual/tasksoverview.html It would be a very s

Re: Unable to run simple java file using Ant

2009-10-10 Thread Greg Roodt
Your build.xml is trying to compile Java source code in ./src. You therefore need to place your Java source code in that directory. On Sat, Oct 10, 2009 at 4:44 PM, srinivas2828 wrote: > > No Roeseindia not in ubder src folder and should i need to place or using > ant means build.xml file we ca

Re: Unable to run simple java file using Ant

2009-10-10 Thread Greg Roodt
Looks like nothing is being compiled. Is your Java source code under ./src? Is your Java file called Roseindia.java? Does Roseindia have no package and does it have a correctly defined main method? On Sat, Oct 10, 2009 at 4:33 PM, srinivas2828 wrote: > > thanks for your reply > Exactly, only Ma

Re: Unable to run simple java file using Ant

2009-10-10 Thread Greg Roodt
Looks like your jar is only created with the manifest and no compiled Class files. Can you confirm if there are any Class files in the jar? Does the code compile successfully into ./build/classes? On Sat, Oct 10, 2009 at 4:23 PM, srinivas2828 wrote: > > Hi I am trying to use ant to compile and r

Re: path problems in build.xml

2009-09-09 Thread Greg Roodt
Ok, my last guess would be you need JAVA_HOME= /usr/lib/jvm/java. On Wed, Sep 9, 2009 at 11:02 PM, Kerry Scott wrote: > Thanks Greg but.. > when I do that it can't find tools.jar which is in /usr/lib/jvm/java/lib > > > -Original Message- > From: Greg Roodt >

Re: path problems in build.xml

2009-09-09 Thread Greg Roodt
Hi I think you've answered your own question. Its looking for a JDK, but your JAVA_HOME references the JRE. Try setting JAVA_HOME to /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0 Greg On Wed, Sep 9, 2009 at 10:20 PM, Kerry Scott wrote: > Hi > I have problems running Ant and I am sure

Re: Unable to delete file

2009-08-18 Thread Greg Roodt
Im sure the intentions are good, but these suggestions are not solving the problem at hand. Jeff, I suggest giving us a bit more to work with. Is there any easy way to reproduce the behavior you are seeing? Its almost certainly some sort of file path problem. On Tue, Aug 18, 2009 at 7:03 PM, Br

Re: annotations are only available if source level is 5.0

2009-07-29 Thread Greg Roodt
There should be a build.xml somewhere in the project. Probably /tmp/OpenbravoERP-2.50MP2/src-db/build in your case, but Im not familiar with this project/product. Inside the build.xml there will be an Ant target with a "javac" task. On Wed, Jul 29, 2009 at 1:15 PM, jann1 wrote: > Scot P. Flo

Re: annotations are only available if source level is 5.0

2009-07-29 Thread Greg Roodt
Try this: On Wed, Jul 29, 2009 at 1:00 PM, jann1 wrote: > Hello all, > opensuse11.1, openbravoERP-250MP2: > ant install.source produces the following error: > > compile: >[javac] Compiling 1 source file to > /tmp/OpenbravoERP-2.50MP2/src-db/build/classes >[javac] -- >

Re: Problem with zip task

2009-07-28 Thread Greg Roodt
>> >> >> >> >> >> > whenempty="create"> >> >> >> >> >> >> >> In the build log, it says right before the [zip] out put >> >> [mkdir] Skipping /path-to//archivedir because it al

Re: Problem with zip task

2009-07-28 Thread Greg Roodt
H, looks a bit suspicious. Could you please include the relevant parts of the build.xml? I know that a few Java File operations dont work very well across file systems. Renaming has given me problems in the past. On Tue, Jul 28, 2009 at 6:58 PM, Cole, Derek E wrote: > The mounts are persis

Re: How can I exclude this directory?

2009-01-13 Thread Greg Roodt
Hi I have never used the war task, but this looks like a FileSet problem. Try dojo/** Cheers Greg On Tue, Jan 13, 2009 at 6:39 PM, wrote: > Hi, > > I'm using Ant 1.6 and trying to build my WAR file. Im my web root > directory, I have a directory named "dojo" tha

Re: Passing multi-byte strings from ANT using task

2008-12-11 Thread Greg Roodt
or escape codes will be sufficient. Greg On Thu, Dec 11, 2008 at 11:12 AM, Mark Salter <[EMAIL PROTECTED]>wrote: > Shashidhar Kotta wrote: > > Hi, > > > > I have tried with your ANT code but it is displaying ?m?n??? only. > > Your code is encoding the String i

Re: Passing multi-byte strings from ANT using task

2008-12-11 Thread Greg Roodt
inside the java program(like the code below) > then it is printing proper multi-byte character: > >System.setProperty("com.param1", "\u0012"); >System.out.println(System.getProperty("com.param1")); > > Thanks, > Shashidhar

Re: Passing multi-byte strings from ANT using task

2008-12-11 Thread Greg Roodt
This is a guess, but try using the Unicode escape sequences for your sysproperty. On Thu, Dec 11, 2008 at 7:12 AM, Shashidhar Kotta <[EMAIL PROTECTED] > wrote: > > Hi All, > > > > In our project we have requirement to pass multi-byte strings from ANT to > java program. We are passing multi-byte

Re: NoSuchMethodError when building a task

2008-12-01 Thread Greg Roodt
The ejbgen task seems to be a Weblogic specific task. I think you would have more luck asking BEA for support. BTW, setting the source attribute=2.18 seems incorrect to me, I would try 1.5, but thats a major guess. I have no knowledge of this task. Cheers Greg On Mon, Dec 1, 2008 at 4:50 PM

Re: ANT failing from command line

2008-12-01 Thread Greg Roodt
ure if there could be an Ant executable that gets picked up earlier. Cheers Greg On Mon, Dec 1, 2008 at 11:56 AM, Ammar Khalid <[EMAIL PROTECTED]> wrote: > 1- After running the SET at DOS, as you can see ANT_HOME is set to: > C:\installations\apache-ant-1.7.1 > > 2- Also in

Re: ANT failing from command line

2008-12-01 Thread Greg Roodt
Yes. Ammar, you need to ensure that the ANT_HOME environment variable is set to the file system location where you extracted Ant 1.7.1. You also need to ensure that %ANT_HOME%\bin is earlier in your PATH than any other installations of Ant. Greg On Mon, Dec 1, 2008 at 11:42 AM, Mike Stewart

Optional classpath entry support for FTP task

2008-09-23 Thread Greg Roodt
the CLASSPATH. I dont really like those options, since they do not support the idea of complete or portable builds. Would anybody else like this functionality added to Ant? Kind Regards Greg Roodt - To unsubscribe, e-mail

"catching" test failure/error (or more generally failure within calls)

2007-09-24 Thread Greg Irvine
of nested calls) if I use the haltonfailure/haltonerror attributes of the build fails within the nested build file and never returns to the top level build file to produce the report. Any suggestions? Cheers. Greg Ps. The reason I've nested things like this is because there may be pro

RE: negating a patternset within a fileset

2006-09-15 Thread Greg Taylor
The filename selector would work, but this is a generic build file used by multiple projects and the patternset is project-specific. Good suggestion, though. I will stick with the in/excludesfile(s). Thanks anyways! -Original Message- From: Dominique Devienne [mailto:[EMAIL PROTECTED]

negating a patternset within a fileset

2006-09-15 Thread Greg Taylor
task, and then moving them back, but that's a bit messy. Thanks in advance, Greg. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: "Recursiveness" / property already used in a "generic" build...

2006-06-15 Thread Greg Irvine
Well, I managed to sort this out using the task and to pass only the required properties along. No more hard-coded folder lists or duplicated build files now! _ From: Greg Irvine [mailto:[EMAIL PROTECTED] Sent: Thursday, 15 June 2006 4:08 PM To: 'Ant Users List

"Recursiveness" / property already used in a "generic" build...

2006-06-14 Thread Greg Irvine
ies) which tries to load it's build.properties which tries to define buildorder and of course can't. Hence, the build in SubFolder1 tries to build SubFolder1, SubFolder2, SubFolder3 as defined by the parent buildorder again instead of the "new" SubSubFolder1. Any suggestions o

RE: Property problem in 1.6.5

2006-04-10 Thread Greg Irvine
Hi Ben. Correct you are. I discovered the err of my ways a few days ago (and forgot to repost to the group). Thanks. Greg. -Original Message- From: Burgess, Benjamin [mailto:[EMAIL PROTECTED] Sent: Tuesday, 11 April 2006 1:04 AM To: Ant Users List Cc: [EMAIL PROTECTED] Subject: RE

RE: Property problem in 1.6.5

2006-04-06 Thread Greg Irvine
Ok. I've progressed slightly on this. It seems a property set in one target isn't returned to the calling target, however, if I call the targets separately, it works. e.g. "ant update jar", rather than "ant jar" and have jar call update. Hmm... -----Or

Property problem in 1.6.5

2006-04-06 Thread Greg Irvine
eas? Please CC me in the response for faster delivery. Thanks and regards, Greg. REVISION=${ repository.revision } - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: how to access a SQL database through ANT

2006-03-13 Thread Greg Akins
ant sql just uses jdbc. You'll need the jdbc drivers for your database. If you dont have access to a database already, then yes, you'll have to install the database. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com

Re: Grep?

2006-03-03 Thread Greg Akins
gt; > > > > > > > > > tofile="${ant.working.dir}/props.xml" overwrite="true" /> > > semanticattributes="true" keepRoot="false"/> > > > NO double property entries found !! > > >

Re: Grep?

2006-03-02 Thread Greg Akins
That looks like a good start.. I don't see how to get the output from an ant task into the grep "in"... But I probably just need to read the documentation better ;-) Thanks! On 3/2/06, Rebhan, Gilbert <[EMAIL PROTECTED]> wrote: > > Hi Greg, > > before you roll

Grep?

2006-03-01 Thread Greg Akins
ure because the file can contain some errors) I'm using to run sql*plus... The results get dumped to ant's logging, and I want to search for particular ora- errors? Any tips that don't involve me writing my own Ant task? Any help

How can I automate use of LOADFILE? (i.e. to load all files in a particular directory into their properties)

2005-12-23 Thread Greg
Hi, Is there a way to automatically load all files (using LOADFILE) in a particular directory? That is loaded in a way such that the ANT property name will be the name of the file. I want to automate what I'm doing in my ANT script below which does the LOADFILE part manually.

Re:

2005-10-23 Thread Greg Winton
part of the match will not change. > > > > This could be further clarrified by putting everything up to ""kalle"" into a property. This is untested but should work. Greg

Re:

2005-10-20 Thread Greg Winton
rther clarrified by putting everything up to ""kalle"" into a property. This is untested but should work. Greg On 10/20/05, Mikael Petterson (KI/EAB) <[EMAIL PROTECTED]> wrote: > > Hi, > > I am trying: > > > > > > > but still no matc

Re:

2005-10-20 Thread Greg Winton
ttern in parentheses), "\2" matches the second, etc. That sa id, I am relatively new to ant and it's regex syntax may vary from those I am used to. Hope this helps, Greg

javadoc and IDL "issue"

2005-09-18 Thread Greg Irvine
rb lists, or how to get the IDL compiler to transfer the comments from IDL to java? Thanks for any advice. Regards, Greg.

RE: "unless" doesn't appear to work for me?

2005-09-15 Thread Greg Akins
> > > > > > You might want to look at the task to ckeck whether or not > the file exists. > > -Rob A > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional c

Re: "unless" doesn't appear to work for me?

2005-09-15 Thread Greg Akins
Quoting Matt Benson <[EMAIL PROTECTED]>: > > This is "the Ant way," ordinarily. > I chose "the Ant way";'). Thanks very much for everyones help! - This mail sent through IMP: http://horde.org/imp/ --

Re: "unless" doesn't appear to work for me?

2005-09-15 Thread Greg Akins
Quoting Dominique Devienne <[EMAIL PROTECTED]>: > 1) Thinking if="foo" means "execute the target is foo's property value > is true (or yes, or 1)". It sounds like you're are not making that > mistake. > Here is the target I'm running (this is the only target in this buildfile, and fileToCheck &

"unless" doesn't appear to work for me?

2005-09-14 Thread Greg Akins
get ${file.exists} (which I assume mean the property isn't set. However, in either case, the target with unless="file.exists" does not run and teh target with if="file.exists" does run. Any ideas what I'm doing wrong? (Ant 1.6.5 on Java 1.4.2 on Linux) -greg --

Re: Failing a "Successful" build

2005-09-13 Thread Greg Akins
> if you want the nested failure to propagate, set failonerror="true" in > > > I had thought that I already did this.. But I double checked and had left it out. Thanks very much. - This mail sent through IMP: http://horde.org/imp/ --

Failing a "Successful" build

2005-09-13 Thread Greg Akins
ure this in a "wrapping" build. Any help is greatly appreciated. Greg Akins Insomnia Consulting www.insomnia-consulting.org - This mail sent through IMP: http://horde.org/imp/

Failures/Errors Errors/Failures in JUnit report

2005-08-30 Thread Greg Irvine
Packages table immediately below it's Tests Errors Failures Success Rate Time Needless to say it then becomes confusing matching the failures with the failures and the errors with the errors between the summary and package tables. Greg.

bug in ant 1.6.3 beta1?

2005-04-13 Thread Greg Gimler
a background process that it misbehaves. So, first of all is this a bug or desired behavior in 1.6.3? Will it be fixed before the stable release? Thanks. -Greg - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: custom task question

2005-04-08 Thread Greg Gimler
g the Java task sounds like a much better idea. I'll see if I can do that instead. -Greg On Apr 8, 2005 3:36 PM, Matt Benson <[EMAIL PROTECTED]> wrote: > I would probably do this a different way. What is the > shell script for? What about the particular java task > in your bui

Re: custom task question

2005-04-08 Thread Greg Gimler
lly, all I want to do is get a reference to some java task that will allow me to extract the classpath and jvm arguments so I can just output those to a shell script. Thanks for your help. -Greg On Apr 8, 2005 3:01 PM, Matt Benson <[EMAIL PROTECTED]> wrote: > What code are yo

Re: custom task question

2005-04-08 Thread Greg Gimler
first call a maybeConfigure() on it. Then I can cast it to a Java task but the classpath isn't filled. Any ideas or should I attack this differently? Thanks. -Greg On Apr 8, 2005 2:43 PM, Greg Gimler <[EMAIL PROTECTED]> wrote: > Hello, > > I'm trying to generate a unix

custom task question

2005-04-08 Thread Greg Gimler
Hello, I'm trying to generate a unix shell script from an ant task. The ant task is just a simple java execution and I want to generate the unix shell script for deployment purposes. Is there a way to do this easily? I've tried to write a custom task and I'm having a difficult time getting all

RE: javadoc task issue with many files

2005-03-07 Thread Greg Irvine
Ok. Problem solved. The “useexternalfile=yes” option to the task reduced, as it said it would in the docs ;), the command line length and bingo. Next time I’ll tell myself RTFM! :) Greg. From: Greg Irvine [mailto:[EMAIL PROTECTED] Sent: Tuesday, 8

javadoc task issue with many files

2005-03-07 Thread Greg Irvine
ound this? Thanks for any assistance. Greg.

RE: Ant with Subversion

2005-03-02 Thread Greg Irvine
You need to download the svnant from the subclipse team (subclipse.tigris.org). I think there is also another svn ant package somewhere. _ From: Naveen Mamidi [mailto:[EMAIL PROTECTED] Sent: Thursday, 3 March 2005 12:14 AM To: user@ant.apache.org Subject: Ant with Subversion

Ant + JUnit problems

2004-10-12 Thread Greg Wilson
assloader seems to suggest? (Right at the bottom, under the heading "Using The Second Option with Ant 1.6 and later"). This leaves me with 'junit.jar' and 'ant-junit.jar' in my 'lib' directory, and neither

Javadocs problem

2004-10-12 Thread Greg Irvine
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - It used to then go on to produce the html documentation after the "Javadoc execution" bit. Using the -debug option doesn't seem to tell me anything else either, as it gets to the same spot and still just stops and says BUILD SUCCESSFUL after listing all the files in the fileset. Any ideas at all? Thanks. Greg.

"nested patternsets"

2004-10-10 Thread Greg Irvine
simple, but any assistance would be appreciated. Thanks and regards, Greg. Ps. Please include me directly in the reply as I'm only subscribed to the digest. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: deleting backup files?

2004-10-08 Thread Greg Wilson
Hi Dominique. That doesn't seem to do it; I've changed the task to: and it's still not deleting the "*~" files. Thanks, Greg On Fri, 8 Oct 2004, Dominique Devienne wrot

deleting backup files?

2004-10-08 Thread Greg Wilson
My build.xml includes this: It deletes the two working directories, but doesn't delete the *~ files. Can anyone tell me why not? Thanks,

Ant + Hibernate: two solutions

2004-10-08 Thread Greg Wilson
the start of term getting a working environment set up. I hate to say it, but the Microsoft .NET tools *do* work much better out of the box... Thanks, Greg - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Ant + Hibernate = Grief + Confusion

2004-10-07 Thread Greg Wilson
Hi Martin. THe blog posting I cited desscribes the symptoms; it also includes a link to the four files that make up the project. I've now reproduced the problem on Solaris, too ;-) Thanks, Greg > Hello Gregory > Perhap you could be more specific about example which causes

Ant + Hibernate = Grief + Confusion

2004-10-07 Thread Greg Wilson
Hi everyone. So, can there be race conditions in apparently-sequential Ant build.xml files? The Hibernate folks say this isn't their fault... http://pyre.third-bit.com/blog/archives/000110.html Thanks, Greg - To unsubs

RE: truncating a directory

2004-09-27 Thread Greg Irvine
Hi Jan. Thanks for your response. Unfortunately and don't support nested s. I'll continue to investigate this though. Thanks for the advice. Greg. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, 27 September 2004 3:24 PM To: [EMAIL

Usage of javah

2004-09-16 Thread Greg Irvine
y for use by my Java application. I'm having a little trouble with it. Of I'm probably completely stupid, but hey... :) Does anyone have a example? Thanks for any help or information. Greg. - To unsubscribe,

RE: 'java' ant task not displaying debug info

2004-04-08 Thread Greg Wolfe
nt' rather than 'ant' then ant version 1.5.2 works fine. I've filed a bug regarding this with RedHat: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=120465 Thanks for your help, -Greg Wolfe --- Matt Benson wrote: I removed the space in "lines, source" and the

"Blueprints" for Ant Templates?

2003-03-18 Thread Greg Zoller
parameters and be good to go. My humble input to an invaluable utility. Kudos to the developers, maintainers, and contributors. Greg Zoller CTO, Codaware, Inc. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]