Re: How do you check jar and zip are not corrupted

2008-02-20 Thread Marc Farrow
also depending on environment it might be better to FTP instead of COPY. On Feb 20, 2008 7:24 AM, Steve Loughran <[EMAIL PROTECTED]> wrote: > Ramu Sethu wrote: > > Hi all > > > > I copy files from a m/c thro copy task. These jars and zip files will be > > used in my class path for the next build

Help with using Ant Project API through Java.

2007-08-16 Thread Marc Farrow
dd(file.getParentFile().getAbsolutePath()); } for (String parent : set) { FileSet fs = new FileSet(); fs.setDir(new File(parent)); fs.setIncludes("**/*.jar"); arList.add(fs); } return arList; } priva

Re: Jar Locking

2006-08-31 Thread Marc Farrow
Thanks Stephen. If I set all references to Ant to null and forced GC, would that resolve the problem? On 8/31/06, Stephen McConnell <[EMAIL PROTECTED]> wrote: > -Original Message- > From: Marc Farrow [mailto:[EMAIL PROTECTED] > Sent: Thursday, 31 August 2006 6:13 AM

Jar Locking

2006-08-30 Thread Marc Farrow
t you just checked out. Anyone have any suggestions to keep the "jars" from being locked after execution of the Ant script? Thank you, Marc -- Marc Farrow

Re: Change JAVA home for one Javac task and not the other

2006-08-30 Thread Marc Farrow
engagement must be confirmed in writing and duly signed. - - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Marc Farrow

Calling Ant within a servlet/webapp

2006-08-14 Thread Marc Farrow
ntThread().getContextClassLoader()); // project.setCoreLoader(null); // project.setCoreLoader(this.getClass().getClassLoader()); // project.setCoreLoader(Thread.currentThread ().getContextClassLoader().getParent()); project.execute("dist"); } catch (Exception e) { throw new RuntimeException(e); } finally { project = null; buildfile = null; } -- Marc Farrow