Return-Path: Delivered-To: apmail-maven-issues-archive@minotaur.apache.org Received: (qmail 23316 invoked from network); 15 Apr 2009 05:32:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 15 Apr 2009 05:32:41 -0000 Received: (qmail 1246 invoked by uid 500); 15 Apr 2009 05:32:40 -0000 Delivered-To: apmail-maven-issues-archive@maven.apache.org Received: (qmail 1134 invoked by uid 500); 15 Apr 2009 05:32:40 -0000 Mailing-List: contact issues-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@maven.apache.org Delivered-To: mailing list issues@maven.apache.org Received: (qmail 1122 invoked by uid 99); 15 Apr 2009 05:32:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Apr 2009 05:32:40 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [63.246.2.115] (HELO codehaus01.managed.contegix.com) (63.246.2.115) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Apr 2009 05:32:32 +0000 Received: from codehaus01.managed.contegix.com (localhost.localdomain [127.0.0.1]) by codehaus01.managed.contegix.com (Postfix) with ESMTP id 7DD4615E8062 for ; Wed, 15 Apr 2009 00:32:14 -0500 (CDT) Message-ID: <18833028.1239773533343.JavaMail.haus-jira@codehaus01.managed.contegix.com> Date: Wed, 15 Apr 2009 00:32:13 -0500 (CDT) From: "Brett Porter (JIRA)" To: issues@maven.apache.org Subject: [jira] Commented: (WAGON-258) SSH / SCP -o options should be quoted In-Reply-To: <10386096.1239770532998.JavaMail.haus-jira@codehaus01.managed.contegix.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 4e90ceb663894a42f12c0e28abbab431 X-Virus-Checked: Checked by ClamAV on apache.org [ http://jira.codehaus.org/browse/WAGON-258?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=173003#action_173003 ] Brett Porter commented on WAGON-258: ------------------------------------ it seems overriding the ssh wagon works, but not the ssh-external wagon due to the following: {code} [DEBUG] No wagons found in the extensions or other internal error: Unable to lookup component 'org.apache.maven.wagon.Wagonscp', it could not be started org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.apache.maven.wagon.Wagonscp', it could not be started at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:339) ... Caused by: org.codehaus.plexus.component.composition.CompositionException: Composition failed for the field knownHostsProvider in object of type org.apache.maven.wagon.providers.ssh.jsch.ScpWagon at org.codehaus.plexus.component.composition.FieldComponentComposer.assignRequirementToField(FieldComponentComposer.java:144) {code} I'll continue investigating to see if this is a problem in the metadata of the external wagon. > SSH / SCP -o options should be quoted > ------------------------------------- > > Key: WAGON-258 > URL: http://jira.codehaus.org/browse/WAGON-258 > Project: Maven Wagon > Issue Type: Bug > Components: wagon-ssh-external > Affects Versions: 1.0-beta-5 > Environment: Maven 2.1.0 and Java 1.5.0_15 > Reporter: Timothy Riley > > I'm currently using Reflection Secure IT, which requires all SSH / SCP -o options > be placed in quotations unfortunately I cannot deviate from this technology. > The problem is that ScpExternalWagon.java places the BatchMode option as an > argument without quotes resulting in a failing SSH command. > Line 251 of ScpExternalWagon.java > cl.createArgument().setValue( "BatchMode yes" ); > Results in... > ssh -o BatchMode yes [REST OF COMMAND] > What I need is... > ssh -o "BatchMode yes" [REST OF COMMAND] -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira