Return-Path: Delivered-To: apmail-forrest-dev-archive@www.apache.org Received: (qmail 13314 invoked from network); 3 Dec 2004 16:45:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 3 Dec 2004 16:45:34 -0000 Received: (qmail 48510 invoked by uid 500); 3 Dec 2004 16:45:22 -0000 Delivered-To: apmail-forrest-dev-archive@forrest.apache.org Received: (qmail 48451 invoked by uid 500); 3 Dec 2004 16:45:21 -0000 Mailing-List: contact dev-help@forrest.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: dev@forrest.apache.org Delivered-To: mailing list dev@forrest.apache.org Received: (qmail 48393 invoked by uid 99); 3 Dec 2004 16:45:20 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (hermes.apache.org: local policy) Received: from heisenberg.zen.co.uk (HELO heisenberg.zen.co.uk) (212.23.3.141) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 03 Dec 2004 08:45:18 -0800 Received: from [82.69.78.226] (helo=[192.168.0.2]) by heisenberg.zen.co.uk with esmtp (Exim 4.30) id 1CaGYQ-0002GA-Hn for dev@forrest.apache.org; Fri, 03 Dec 2004 16:45:10 +0000 Message-ID: <41B09816.5050908@apache.org> Date: Fri, 03 Dec 2004 16:45:10 +0000 From: Ross Gardler User-Agent: Mozilla Thunderbird 0.9 (Windows/20041103) X-Accept-Language: en-us, en MIME-Version: 1.0 To: dev@forrest.apache.org Subject: Re: Plugin deployment problem (was Re: Plugin release process) References: <20041201212947.20887.qmail@minotaur.apache.org> <41AE43C8.7040006@apache.org> <41B0919F.8000703@apache.org> In-Reply-To: <41B0919F.8000703@apache.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Originating-Heisenberg-IP: [82.69.78.226] X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Rick Tessner wrote: > Ross Gardler wrote: > >> If this is ready for use please do an "ant deploy" in the plugin >> directory, this will make the plugin zip available via the forest >> website. > > > I'm trying to do an "ant deploy" for the text output plugin and I'm > running into this: > > /home/rick/projects/forrest/van/plugins/build.xml:146: Problem creating > zip: > /home/rick/projects/forrest/van/plugins/org.apache.forrest.plugin.text-output/build/dist/org.apache.forrest.plugin.text-output.zip > (No such file or directory) (and the archive is probably corrupt but I > could not delete it) > > Looks like the build/dist directory is being created and then deleted > right away. A dependency issue in the ant tasks, maybe? Yes, yoiu are right: init: [input] skipping input as property plugin-name has already been set. [mkdir] Created dir: D:\openSource\forrest\plugins\org.apache.forrest.plugin .pdf-output\build\dist clean: [delete] Deleting directory D:\openSource\forrest\build\plugins\org.apache.fo rrest.plugin.pdf-output [delete] Deleting directory D:\openSource\forrest\plugins\org.apache.forrest. plugin.pdf-output\build\dist The problem is that dist depends on test and test cleans the build dir. I have fixed in SVN. Ross