Return-Path: Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 93457 invoked from network); 3 Oct 2000 08:02:53 -0000 Received: from hermes.ext.eurgw.xerox.com (HELO hermes.eurgw.xerox.com) (root@212.120.143.5) by locus.apache.org with SMTP; 3 Oct 2000 08:02:53 -0000 Received: from eurodns4.eur.xerox.com (eurodns4.eur.xerox.com [13.202.66.50]) by hermes.eurgw.xerox.com (8.9.3/8.9.3) with ESMTP id JAA12615 for ; Tue, 3 Oct 2000 09:02:04 +0100 (BST) Received: from eurgbrmg01.eur.xerox.com (eurgbrmg01.eur.xerox.com [13.202.65.253]) by eurodns4.eur.xerox.com (8.9.3/8.9.3) with ESMTP id IAA27799 for ; Tue, 3 Oct 2000 08:31:33 +0100 (BST) Received: from eurgbrbh01.emeacinops.xerox.com (unverified) by eurgbrmg01.eur.xerox.com (Content Technologies SMTPRS 4.1.5) with ESMTP id for ; Tue, 3 Oct 2000 08:31:32 +0100 Received: by EURGBRBH01 with Internet Mail Service (5.5.2651.58) id ; Tue, 3 Oct 2000 08:31:32 +0100 Message-ID: <5158BC6D771ED3118D6200508B2C272219BE3D@gbrxmsms01.bh.gbr.xerox.com> From: "Everitt, Andrew" To: "'ant-dev@jakarta.apache.org'" Subject: RE: vssGet Date: Tue, 3 Oct 2000 08:29:48 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2651.58) Content-Type: text/plain; charset="iso-8859-1" X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N It certainly has (I wrote and use the task) - have you got the optional.jar file in your ant/lib directory? If not you need to download it, otherwise can you tell me some more information about your platform (OS, JDK etc.). Note that the task name is case sensitive 'vssget' Cheers, Andi. > -----Original Message----- > From: Mikkel Bruun [mailto:mikkel.bruun@valtech.dk] > Sent: 03 October 2000 08:22 > To: 'ant-dev@jakarta.apache.org' > Subject: vssGet > > > has the VssGet task been implmented yet??? > > I get an error stating that ant doesnt recognize the task... > > Mikkel Bruun > mikkel.bruun@valtech.dk > Direct +45 32 88 22 73 > > AHEAD/Valtech - e-business development > Kanonbaadsvej 10 > DK-1437 Copenhagen, Denmark > Tel +45 32 88 20 00 > Fax +45 32 88 20 20 > > Take time to visit us at: www.ahead.com > or www.valtech.com > > > -----Oprindelig meddelelse----- > Fra: Mikkel Bruun > Sendt: Monday, October 02, 2000 11:27 AM > Til: 'ant-dev@jakarta.apache.org' > Emne: newbie problem javadoc > > > Hi guys > > Im having problems generating javadoc using ant. > Im running win32... > Standing in directory dist i have src.dir (src) and build.javadocs > (dest/docs)... > running ant i get the following: > > ------------- > > Buildfile: build.xml > > docs: > [javadoc] Generating Javadoc > [javadoc] Parsing source files for packages > [javadoc] Javadoc execution > [javadoc] javadoc: No packages or classes specified. > [javadoc] usage: javadoc [options] [packagenames] [sourcefiles] > [classnames] [ > > ------------- > > the docs target is like below: > > > packagenames="org.xxx.product.*" > sourcepath="${src.dir}" > destdir="${build.javadocs}" > author="true" > version="true" > use="true" > > > > > > > thanks! > > Mikkel Bruun > mikkel.bruun@valtech.dk > Direct +45 32 88 22 73 > > AHEAD/Valtech - e-business development > Kanonbaadsvej 10 > DK-1437 Copenhagen, Denmark > Tel +45 32 88 20 00 > Fax +45 32 88 20 20 > > Take time to visit us at: www.ahead.com > or www.valtech.com > > > -----Oprindelig meddelelse----- > Fra: Nico Seessle [mailto:nico@seessle.de] > Sendt: Monday, October 02, 2000 11:08 AM > Til: ant-dev@jakarta.apache.org > Emne: [PATCH] Property.java Re: unable to remove a file > > > Ensure the property-file is always closed after reading it - > don't rely on > garbage collection. > > ----- Original Message ----- > From: "Peter Donald" > To: > Sent: Monday, October 02, 2000 11:42 AM > Subject: Re: unable to remove a file > > > > >I'm not sure what Java is 'required to do' if you use > something like > > >'props.load(new FileInputStream(file));' - it can > immediately close the > file > > >after loading, but will it do in all cases? > > > > Nope and it is the source of much hell in developing on NT. > You should > > always explictly close all file handles or else NT will not > be able to > > delete them ;( > > >