From continuum-commits-return-264-apmail-maven-continuum-commits-archive=maven.apache.org@maven.apache.org Wed Jun 01 10:58:12 2005 Return-Path: Delivered-To: apmail-maven-continuum-commits-archive@www.apache.org Received: (qmail 87331 invoked from network); 1 Jun 2005 10:58:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 1 Jun 2005 10:58:12 -0000 Received: (qmail 6922 invoked by uid 500); 1 Jun 2005 10:58:12 -0000 Delivered-To: apmail-maven-continuum-commits-archive@maven.apache.org Received: (qmail 6898 invoked by uid 500); 1 Jun 2005 10:58:11 -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 6885 invoked by uid 99); 1 Jun 2005 10:58:11 -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 minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Wed, 01 Jun 2005 03:58:10 -0700 Received: (qmail 87285 invoked by uid 65534); 1 Jun 2005 10:57:59 -0000 Message-ID: <20050601105759.87284.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Subject: svn commit: r179373 - in /maven/continuum/trunk: README.txt build.sh Date: Wed, 01 Jun 2005 10:57:59 -0000 To: continuum-commits@maven.apache.org From: trygvis@apache.org X-Mailer: svnmailer-1.0.0-dev X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: trygvis Date: Wed Jun 1 03:57:58 2005 New Revision: 179373 URL: http://svn.apache.org/viewcvs?rev=3D179373&view=3Drev Log: o Making the build.sh tee the output to build.log. Thanks to Jerome Lacoste for the patch. Modified: maven/continuum/trunk/README.txt maven/continuum/trunk/build.sh Modified: maven/continuum/trunk/README.txt URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/README.txt?rev=3D1= 79373&r1=3D179372&r2=3D179373&view=3Ddiff =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- maven/continuum/trunk/README.txt (original) +++ maven/continuum/trunk/README.txt Wed Jun 1 03:57:58 2005 @@ -3,15 +3,15 @@ =20 Run: =20 - ./build.sh + $ sh build.sh + +The output of the build will be in build.log. =20 To start continuum: =20 - cd continuum-web/generated-runtime - ./bin/plexus.sh + $ cd continuum-web/generated-runtime + $ ./bin/plexus.sh =20 To access continuum's web site, go to: =20 http://localhost:8080/continuumweb/servlet/continuum - - Modified: maven/continuum/trunk/build.sh URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/build.sh?rev=3D179= 373&r1=3D179372&r2=3D179373&view=3Ddiff =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- maven/continuum/trunk/build.sh (original) +++ maven/continuum/trunk/build.sh Wed Jun 1 03:57:58 2005 @@ -12,7 +12,7 @@ continuum-xmlrpc/pom.xml =20 m2 -N install "$@" -m2 -r -Dmaven.reactor.includes=3D*/pom.xml clean:clean "$@" -m2 -r -Dmaven.reactor.includes=3D"$includes" install "$@" +m2 -r -Dmaven.reactor.includes=3D*/pom.xml clean:clean "$@" 2>&1 | tee bui= ld.log +m2 -r -Dmaven.reactor.includes=3D"$includes" install "$@" 2>&1 | tee -a bu= ild.log =20 -( cd continuum-plexus-application && sh build.sh "$@" ) +( cd continuum-plexus-application && sh build.sh "$@" 2>&1 | tee -a ../bui= ld.log)