Return-Path: Delivered-To: apmail-ant-notifications-archive@minotaur.apache.org Received: (qmail 43700 invoked from network); 27 May 2009 02:04:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 27 May 2009 02:04:58 -0000 Received: (qmail 11924 invoked by uid 500); 27 May 2009 02:05:10 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 11864 invoked by uid 500); 27 May 2009 02:05:10 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 11855 invoked by uid 99); 27 May 2009 02:05:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 May 2009 02:05:10 +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.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 May 2009 02:05:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 532BF23888D3; Wed, 27 May 2009 02:04:48 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r778959 - in /ant/ivy/core/trunk: CHANGES.txt src/java/org/apache/ivy/plugins/repository/ssh/SshCache.java Date: Wed, 27 May 2009 02:04:48 -0000 To: notifications@ant.apache.org From: maartenc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090527020448.532BF23888D3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: maartenc Date: Wed May 27 02:04:47 2009 New Revision: 778959 URL: http://svn.apache.org/viewvc?rev=778959&view=rev Log: FIX: Publish with SSH (sftp or ssh) prevents enclosing java process to terminate (IVY-1075) Modified: ant/ivy/core/trunk/CHANGES.txt ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/repository/ssh/SshCache.java Modified: ant/ivy/core/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/CHANGES.txt?rev=778959&r1=778958&r2=778959&view=diff ============================================================================== --- ant/ivy/core/trunk/CHANGES.txt (original) +++ ant/ivy/core/trunk/CHANGES.txt Wed May 27 02:04:47 2009 @@ -89,6 +89,7 @@ ===================================== - IMPROVEMENT: Pre and post retrieve artifact events (IVY-1084) +- FIX: Publish with SSH (sftp or ssh) prevents enclosing java process to terminate (IVY-1075) - FIX: Ibiblio resolver throws IndexOutOfBoundsException when using snapshot versions with usepoms='false' (IVY-1028) - FIX: Wrong BuildException messages (findmodules) (IVY-1056) - FIX: PomModuleDescriptorBuilder does not resolve ejb type dependencies to jar extension (IVY-1058) (thanks to Andrey Lomakin) Modified: ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/repository/ssh/SshCache.java URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/repository/ssh/SshCache.java?rev=778959&r1=778958&r2=778959&view=diff ============================================================================== --- ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/repository/ssh/SshCache.java (original) +++ ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/repository/ssh/SshCache.java Wed May 27 02:04:47 2009 @@ -327,6 +327,7 @@ } session.setUserInfo(new CfUserInfo(host, username, userPassword, pemFile, pemPassword, passFile)); + session.setDaemonThread(true); session.connect(); Message.verbose(":: SSH :: connected to " + host + "!"); setSession(username, host, port, session);