~ubuntu-branches/debian/sid/wagon2/sid

« back to all changes in this revision

Viewing changes to wagon-providers/wagon-ssh/src/main/java/org/apache/maven/wagon/providers/ssh/jsch/AbstractJschWagon.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2013-05-16 01:37:59 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130516013759-y1ex2xsoghuton6h
Tags: 2.4-1
* New upstream release
  - Removed the patch for CVE-2013-0253 fixed in version 2.4
  - Refreshed the patches
  - Added the required build dependency on libplexus-component-metadata-java
  - Added Maven rules to ignore bnd and plexus-maven-plugin
  - Added a patch to fix a type cast issue in ScmWagon.java
* Fix the watch file to report the most recent versions
* Use the upstream tarball instead of a svn tag to fetch the orig source
* debian/copyright: Fixed a typo in the Format URI

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
/**
71
71
 * AbstractJschWagon 
72
72
 *
73
 
 * @version $Id: AbstractJschWagon.java 1170464 2011-09-14 07:56:38Z olamy $
 
73
 *
74
74
 */
75
75
public abstract class AbstractJschWagon
76
76
    extends StreamWagon
83
83
    /**
84
84
     * @plexus.requirement role-hint="file"
85
85
     */
86
 
    private KnownHostsProvider knownHostsProvider;
 
86
    private volatile KnownHostsProvider knownHostsProvider;
87
87
    
88
88
    /**
89
89
     * @plexus.requirement
90
90
     */
91
 
    private InteractiveUserInfo interactiveUserInfo;
 
91
    private volatile InteractiveUserInfo interactiveUserInfo;
92
92
 
93
93
    /**
94
94
     * @plexus.requirement
95
95
     */
96
 
    private UIKeyboardInteractive uIKeyboardInteractive;
 
96
    private volatile UIKeyboardInteractive uIKeyboardInteractive;
97
97
 
98
98
    private static final int SOCKS5_PROXY_PORT = 1080;
99
99