Return-Path: Delivered-To: apmail-continuum-users-archive@www.apache.org Received: (qmail 5189 invoked from network); 1 Jul 2010 16:48:33 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 1 Jul 2010 16:48:33 -0000 Received: (qmail 53745 invoked by uid 500); 1 Jul 2010 16:48:33 -0000 Delivered-To: apmail-continuum-users-archive@continuum.apache.org Received: (qmail 53688 invoked by uid 500); 1 Jul 2010 16:48:32 -0000 Mailing-List: contact users-help@continuum.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@continuum.apache.org Delivered-To: mailing list users@continuum.apache.org Received: (qmail 53680 invoked by uid 99); 1 Jul 2010 16:48:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jul 2010 16:48:31 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of wsmoak@gmail.com designates 74.125.82.171 as permitted sender) Received: from [74.125.82.171] (HELO mail-wy0-f171.google.com) (74.125.82.171) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jul 2010 16:48:23 +0000 Received: by wyi11 with SMTP id 11so5137029wyi.2 for ; Thu, 01 Jul 2010 09:48:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:content-type :content-transfer-encoding; bh=RCBh/D+b9Nqdr7okkdaZwzfzENTvJIyAnNshe3NjkE0=; b=Ke9aD36NJLMMJUn3+wyIXKRJDK64P6pjXPzkvZqR0oBoX3KU4TfSsBX9LsUTJt+RZV isbPTwZvYM7IfL6quugt5GX2EdwOqbjU6+8pe9Md792a78UuN5Vu1rZuYfJTCdhLNwe/ JILjuaFsF6UXrwb5BTV9KsP+ou3HsgP9kvQ7k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; b=ee70Xd+9rQdpHh391lj+3FrBydrpLoWGpUFWsUjccwWIL1eV3iDYp7ahLo778RrIlk joXiTQ4UTMpTlaPIo1nQfXcmS3ZuviGIi7ullHZFuPQ6F7V1FSTBN3xkyM2XrIml0R3M c8Yq9HxL5jLneuGG4iGSwpfZCjtBt+JjNra/A= Received: by 10.213.28.134 with SMTP id m6mr2693369ebc.17.1278002883195; Thu, 01 Jul 2010 09:48:03 -0700 (PDT) MIME-Version: 1.0 Received: by 10.213.9.69 with HTTP; Thu, 1 Jul 2010 09:47:43 -0700 (PDT) In-Reply-To: <29030739.post@talk.nabble.com> References: <29020722.post@talk.nabble.com> <29030380.post@talk.nabble.com> <29030739.post@talk.nabble.com> From: Wendy Smoak Date: Thu, 1 Jul 2010 12:47:43 -0400 Message-ID: Subject: Re: how to set continuum build fresh To: users@continuum.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org > Thanks for the reply. I'm using the build.xml, ant engine. In that case, = I > need to ask the developer to configure the build.xml (configuration file > which buil the war file) to have define the filesystem to the war can be > stored in version? And I do not want to change it to clean deploy, becaus= e > deployment will be done by my superior. I didn't realize you were using Ant. "Deploy" here doesn't mean to your application server, it means into a Maven repository. > All I want is continuumm build and > keep the war in versions (in historical order, maybe the last including t= he > later war file). Continuum doesn't have that feature. It came out of the Maven project and just assumes that you will be using Maven and a repository manager with it, so it doesn't try to store the things you're building. If you're willing to modify the Continuum code it could probably be added. For Maven builds, Continuum already saves off the Surefire (test) results. I think I already have a feature request in JIRA asking for the ability to save off other things from the build. But, you can also do it with your Ant build by simply copying the war somewhere else on the server. That's what I'd suggest. > =A0right now whenever i trigger build.xml to build war file the war get b= uild > at the following directory > /usr/local/apache-tomcat-6.0.18-1/bin/data/working-directory > > its creates folder by number (1,2) under the working-directory folder and > war being stored there. > however, each time when i trigger, a new war being created and the folder > (numbering) get incremented but the previous folder is missing, guess it > overwrites. That's odd... IME the numbered directory corresponds to the project id. Unless you are removing and re-adding the project, I wouldn't expect that number to change. --=20 Wendy