Return-Path: Delivered-To: apmail-continuum-commits-archive@www.apache.org Received: (qmail 44351 invoked from network); 14 Apr 2008 22:40:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Apr 2008 22:40:52 -0000 Received: (qmail 94159 invoked by uid 500); 14 Apr 2008 22:40:53 -0000 Delivered-To: apmail-continuum-commits-archive@continuum.apache.org Received: (qmail 94150 invoked by uid 500); 14 Apr 2008 22:40:53 -0000 Mailing-List: contact commits-help@continuum.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@continuum.apache.org Delivered-To: mailing list commits@continuum.apache.org Received: (qmail 94141 invoked by uid 99); 14 Apr 2008 22:40:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Apr 2008 15:40:53 -0700 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.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Apr 2008 22:40:09 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D8FA51A9832; Mon, 14 Apr 2008 15:40:29 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r648038 - /continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/project/builder/maven/MavenTwoContinuumProjectBuilder.java Date: Mon, 14 Apr 2008 22:40:29 -0000 To: commits@continuum.apache.org From: olamy@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080414224029.D8FA51A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: olamy Date: Mon Apr 14 15:40:24 2008 New Revision: 648038 URL: http://svn.apache.org/viewvc?rev=648038&view=rev Log: [CONTINUUM-1605] Continuum should not store the userid or password if 'use cached credentials' is checked Modified: continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/project/builder/maven/MavenTwoContinuumProjectBuilder.java Modified: continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/project/builder/maven/MavenTwoContinuumProjectBuilder.java URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/project/builder/maven/MavenTwoContinuumProjectBuilder.java?rev=648038&r1=648037&r2=648038&view=diff ============================================================================== --- continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/project/builder/maven/MavenTwoContinuumProjectBuilder.java (original) +++ continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/project/builder/maven/MavenTwoContinuumProjectBuilder.java Mon Apr 14 15:40:24 2008 @@ -241,6 +241,8 @@ We are interested in having the scm username and password being passed into this method be taken into account during project mapping so make sure we set it to the continuum project instance. */ + /* + CONTINUUM-1605 don't store username/password if ( username != null && StringUtils.isNotEmpty( username ) ) { continuumProject.setScmUsername( username ); @@ -250,6 +252,7 @@ continuumProject.setScmPassword( password ); } } + */ builderHelper.mapMavenProjectToContinuumProject( result, mavenProject, continuumProject, groupPom );