You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by an...@apache.org on 2013/05/13 01:16:30 UTC

svn commit: r1481669 - in /ant/core/trunk: WHATSNEW lib/libraries.properties manual/install.html src/etc/poms/ant-jsch/pom.xml

Author: antoine
Date: Sun May 12 23:16:30 2013
New Revision: 1481669

URL: http://svn.apache.org/r1481669
Log:
recommending to use jsch 0.1.50 going forward due to fix of https://sourceforge.net/tracker/index.php?func=detail&aid=3605486

Modified:
    ant/core/trunk/WHATSNEW
    ant/core/trunk/lib/libraries.properties
    ant/core/trunk/manual/install.html
    ant/core/trunk/src/etc/poms/ant-jsch/pom.xml

Modified: ant/core/trunk/WHATSNEW
URL: http://svn.apache.org/viewvc/ant/core/trunk/WHATSNEW?rev=1481669&r1=1481668&r2=1481669&view=diff
==============================================================================
--- ant/core/trunk/WHATSNEW (original)
+++ ant/core/trunk/WHATSNEW Sun May 12 23:16:30 2013
@@ -40,6 +40,10 @@ Other changes:
  * Add conditional attributes
    Bugzilla report 43362
 
+ * Recommending to upgrade jsch to 0.1.50, particularly if you are using Java 1.7.
+   jsch is the library behind the sshexec and scp Ant tasks.
+   Versions of jsch older than 0.1.50 fail randomly under Java 1.7 with an error message "verify: false"
+
 Changes from Ant 1.8.4 TO Ant 1.9.0
 ===================================
 

Modified: ant/core/trunk/lib/libraries.properties
URL: http://svn.apache.org/viewvc/ant/core/trunk/lib/libraries.properties?rev=1481669&r1=1481668&r2=1481669&view=diff
==============================================================================
--- ant/core/trunk/lib/libraries.properties (original)
+++ ant/core/trunk/lib/libraries.properties Sun May 12 23:16:30 2013
@@ -46,7 +46,7 @@ jasper-runtime.version=${jasper-compiler
 jdepend.version=2.9.1
 jruby.version=0.9.8
 junit.version=4.11
-jsch.version=0.1.42
+jsch.version=0.1.50
 jython.version=2.1
 #log4j 1.2.15 requires JMS and a few other Sun jars that are not in the m2 repo
 log4j.version=1.2.14

Modified: ant/core/trunk/manual/install.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/manual/install.html?rev=1481669&r1=1481668&r2=1481669&view=diff
==============================================================================
--- ant/core/trunk/manual/install.html (original)
+++ ant/core/trunk/manual/install.html Sun May 12 23:16:30 2013
@@ -1008,7 +1008,7 @@ you need jakarta-oro 2.0.8 or later, and
     target="_top">http://xml.apache.org/commons/</a>.</td>
   </tr>
   <tr>
-    <td>jsch.jar <b>0.1.42 or later</b></td>
+    <td>jsch.jar <b>0.1.50 or later</b></td>
     <td>sshexec and scp tasks</td>
     <td><a href="http://www.jcraft.com/jsch/index.html"
         target="_top">http://www.jcraft.com/jsch/index.html</a></td>

Modified: ant/core/trunk/src/etc/poms/ant-jsch/pom.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/etc/poms/ant-jsch/pom.xml?rev=1481669&r1=1481668&r2=1481669&view=diff
==============================================================================
--- ant/core/trunk/src/etc/poms/ant-jsch/pom.xml (original)
+++ ant/core/trunk/src/etc/poms/ant-jsch/pom.xml Sun May 12 23:16:30 2013
@@ -35,7 +35,7 @@ xsi:schemaLocation="http://maven.apache.
   <version>1.9.1-SNAPSHOT</version>
   <name>Apache Ant + JSch</name>
   <description>contains the sshexec and scp tasks
-  jsch 0.1.29 might not be available from maven</description>
+  </description>
   <dependencies>
     <dependency>
       <groupId>org.apache.ant</groupId>
@@ -46,7 +46,7 @@ xsi:schemaLocation="http://maven.apache.
     <dependency>
       <groupId>com.jcraft</groupId>
       <artifactId>jsch</artifactId>
-      <version>0.1.42</version>
+      <version>0.1.50</version>
       <scope>compile</scope>
     </dependency>
   </dependencies>