Return-Path: Delivered-To: apmail-hadoop-core-commits-archive@www.apache.org Received: (qmail 72975 invoked from network); 24 Jun 2009 16:59:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 24 Jun 2009 16:59:41 -0000 Received: (qmail 3203 invoked by uid 500); 24 Jun 2009 16:59:52 -0000 Delivered-To: apmail-hadoop-core-commits-archive@hadoop.apache.org Received: (qmail 3173 invoked by uid 500); 24 Jun 2009 16:59:52 -0000 Mailing-List: contact core-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-commits@hadoop.apache.org Received: (qmail 3164 invoked by uid 99); 24 Jun 2009 16:59:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Jun 2009 16:59:52 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Jun 2009 16:59:50 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id C062F118C0 for ; Wed, 24 Jun 2009 16:59:29 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: core-commits@hadoop.apache.org Date: Wed, 24 Jun 2009 16:59:29 -0000 Message-ID: <20090624165929.17486.99533@eos.apache.org> Subject: [Hadoop Wiki] Update of "HowToContribute" by GaryMurry X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification. The following page has been changed by GaryMurry: http://wiki.apache.org/hadoop/HowToContribute The comment on the change is: Just changing URL references from core to common. No change to mailing list name ------------------------------------------------------------------------------ - = How to Contribute to Hadoop Core = + = How to Contribute to Hadoop Common = - This page describes the mechanics of ''how'' to contribute software to Hadoop Core. For ideas about ''what'' you might contribute, please see the ProjectSuggestions page. + This page describes the mechanics of ''how'' to contribute software to Hadoop Common. For ideas about ''what'' you might contribute, please see the ProjectSuggestions page. === Getting the source code === First of all, you need the Hadoop source code.[[BR]] - Get the source code on your local drive using [http://hadoop.apache.org/core/version_control.html SVN]. Most development is done on the "trunk": + Get the source code on your local drive using [http://hadoop.apache.org/common/version_control.html SVN]. Most development is done on the "trunk": {{{ - svn checkout http://svn.apache.org/repos/asf/hadoop/core/trunk/ hadoop-core-trunk + svn checkout http://svn.apache.org/repos/asf/hadoop/common/trunk/ hadoop-common-trunk }}} - You may also want to develop against a specific release. To do so, visit [http://svn.apache.org/repos/asf/hadoop/core/tags/] and find the release that you are interested in developing against. To checkout this release, run: + You may also want to develop against a specific release. To do so, visit [http://svn.apache.org/repos/asf/hadoop/common/tags/] and find the release that you are interested in developing against. To checkout this release, run: {{{ - svn checkout http://svn.apache.org/repos/asf/hadoop/core/tags/release-X.Y.Z/ hadoop-core-X.Y.Z + svn checkout http://svn.apache.org/repos/asf/hadoop/common/tags/release-X.Y.Z/ hadoop-common-X.Y.Z }}} If you prefer to use Eclipse for development, there are instructions for setting up SVN access from within Eclipse at EclipseEnvironment. @@ -57, +57 @@ Please make sure that all unit tests succeed before constructing your patch and that no new javac compiler warnings are introduced by your patch. {{{ - > cd hadoop-core-trunk + > cd hadoop-common-trunk > ant -Djavac.args="-Xlint -Xmaxwarns 1000" clean test tar }}} After a while, if you see