Return-Path: Delivered-To: apmail-geronimo-dev-archive@www.apache.org Received: (qmail 37875 invoked from network); 9 Mar 2007 04:24:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Mar 2007 04:24:00 -0000 Received: (qmail 15488 invoked by uid 500); 9 Mar 2007 04:24:02 -0000 Delivered-To: apmail-geronimo-dev-archive@geronimo.apache.org Received: (qmail 15437 invoked by uid 500); 9 Mar 2007 04:24:02 -0000 Mailing-List: contact dev-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list dev@geronimo.apache.org Received: (qmail 15426 invoked by uid 99); 9 Mar 2007 04:24:02 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Mar 2007 20:24:02 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of jason.dillon@gmail.com designates 64.233.166.182 as permitted sender) Received: from [64.233.166.182] (HELO py-out-1112.google.com) (64.233.166.182) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Mar 2007 20:23:50 -0800 Received: by py-out-1112.google.com with SMTP id f47so255055pye for ; Thu, 08 Mar 2007 20:23:22 -0800 (PST) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:mime-version:in-reply-to:references:content-type:message-id:content-transfer-encoding:from:subject:date:to:x-mailer:sender; b=hbvS5FeyaIkBCRK7h2K/YzgDTZp8zPBcvhQ0aHAxQtnR7jJFh7dBEJqi/1dQbfATOR3ARA4pbs5PE5n3X/9zEFJl43LyORykcMkh/sPKgZ9j71ulogLx9VQTL6TFDH/KVK6TySIhw2a4/QoiTjgM7hGxWi77jpJJVs6OntZqeU4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:mime-version:in-reply-to:references:content-type:message-id:content-transfer-encoding:from:subject:date:to:x-mailer:sender; b=qe4N/L9f3fDUTqhTG6+rmI1MiNy1Gxk+3WXuzmmdj6FiYkSu7gUwVv6Cq2fb4FkkJUbKxlnpHtSMrBX0cv5hWIXvUvSV0WjaPZm41nsqUxpjO+pK0mj8HYDbhzGCsIdxW7Q965BIFgtamqVQOX5Uif/QZeAjjAqfil3WMj1bpuI= Received: by 10.35.121.2 with SMTP id y2mr2521441pym.1173414202105; Thu, 08 Mar 2007 20:23:22 -0800 (PST) Received: from ?10.0.1.2? ( [24.7.69.241]) by mx.google.com with ESMTP id f79sm3333455pyh.2007.03.08.20.23.21; Thu, 08 Mar 2007 20:23:21 -0800 (PST) Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: References: Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <6E8D6A0F-EEFF-4BFC-8DDA-86F27CA454FC@planet57.com> Content-Transfer-Encoding: 7bit From: Jason Dillon Subject: Re: build question Date: Thu, 8 Mar 2007 20:23:18 -0800 To: dev@geronimo.apache.org X-Mailer: Apple Mail (2.752.3) Sender: Jason Dillon X-Virus-Checked: Checked by ClamAV on apache.org On Mar 8, 2007, at 8:16 PM, Don Hill wrote: > I know this is probably more of a maven question but after I do a > mvn clean install and I am working on some classes in applications/ > console/geronimo-console-standard, what is the process that is > followed to build just this module and then do a 'mvn install \ mvn > -Ptools geronimo:start' Er... mvn install ;-) > I just need a better way to perform build/test cycles. Ya, don't we all ;-) Unfortunately with the configs/* and assembly/* bits, there is no really easy way to just rebuild the bits that have changed quickly. You probably want to do something like: (cd applications/console; mvn install) (cd configs/webconsole-jetty6; mvn install) (cd assemblies/geronimo-jetty6-jee5; mvn install) mvn -Ptools geronimo:start Assuming that nothing else from modules/* has been changed, then that should be the quickest way to test changes to the console.ear. --jason