From continuum-commits-return-898-apmail-maven-continuum-commits-archive=maven.apache.org@maven.apache.org Fri Sep 09 21:22:37 2005 Return-Path: Delivered-To: apmail-maven-continuum-commits-archive@www.apache.org Received: (qmail 24189 invoked from network); 9 Sep 2005 21:22:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 9 Sep 2005 21:22:37 -0000 Received: (qmail 52248 invoked by uid 500); 9 Sep 2005 21:22:36 -0000 Delivered-To: apmail-maven-continuum-commits-archive@maven.apache.org Received: (qmail 52231 invoked by uid 500); 9 Sep 2005 21:22:36 -0000 Mailing-List: contact continuum-commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: continuum-dev@maven.apache.org Delivered-To: mailing list continuum-commits@maven.apache.org Received: (qmail 52218 invoked by uid 99); 9 Sep 2005 21:22:36 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 09 Sep 2005 14:22:36 -0700 Received: (qmail 24175 invoked by uid 65534); 9 Sep 2005 21:22:36 -0000 Message-ID: <20050909212236.24174.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r279884 - /maven/continuum/trunk/continuum-site/src/site/apt/dev/building.apt Date: Fri, 09 Sep 2005 21:22:35 -0000 To: continuum-commits@maven.apache.org From: evenisse@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: evenisse Date: Fri Sep 9 14:22:32 2005 New Revision: 279884 URL: http://svn.apache.org/viewcvs?rev=279884&view=rev Log: [CONTINUUM-307] Describe how to create distribution package. Modified: maven/continuum/trunk/continuum-site/src/site/apt/dev/building.apt Modified: maven/continuum/trunk/continuum-site/src/site/apt/dev/building.apt URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-site/src/site/apt/dev/building.apt?rev=279884&r1=279883&r2=279884&view=diff ============================================================================== --- maven/continuum/trunk/continuum-site/src/site/apt/dev/building.apt (original) +++ maven/continuum/trunk/continuum-site/src/site/apt/dev/building.apt Fri Sep 9 14:22:32 2005 @@ -24,8 +24,11 @@ Building Continuum - <> Continuum requires Maven 2 Alpha 2 or newer to build. While we use - the Alpha 2 release to build it should build with newer versions of Maven 2. + <> Continuum requires a recent build of Maven 2 to build. If you are + running into fundamental problems running the <<>> script (i.e. problems + parsing pom.xml, etc) you probably need a newer version of Maven 2 and that + may require you to build it. You can find out how + {{{http://maven.apache.org/maven2/developers/building.html}here}}. Continuum consists of 6 Maven 2 projects: @@ -59,8 +62,22 @@ continuum$ sh build.sh +--+ - A complete copy of the output of the build will be in <<>>. + A complete copy of the output of the build will be in <<>>. [Note:] For Windows, you need to check out the sources at the root of your disk because continuum build use long path name and Windows doesn't accept path length greater than 250 characters. + + A working version of the Continuum server resides in <<>>. + That is the server that was used in the execution of the test suite. Most likely, you'll want the full distribution + package. You can create that by executing the <<>> goal in the <<>> + module. + ++--+ +$ cd continuum-plexus-application +$ m2 assembly:assembly +$ ls -l target/continuum* +-rw-r--r-- 1 foo bar 13298032 Sep 9 14:38 target/continuum-[VERSION]-bin.tar.bz2 +-rw-r--r-- 1 foo bar 13202991 Sep 9 14:38 target/continuum-[VERSION]-bin.tar.gz +-rw-r--r-- 1 foo bar 13207990 Sep 9 14:38 target/continuum-[VERSION]-bin.zip ++--+