'Caused by: java.lang.ClassNotFoundException: com.jcraft.jsch.JSchException

The protocol between local repository and remote repository is HTTPS instead of ssh,does it still need lib of jsch,and if it's true, can you tell me how to handle in details,thanks so much~~



Solution 1:[1]

Even if it isn't used for https access, jsch is still required for JGit.
See JGit dependencies.

That thread states the same thing, even when cloning an https repo.

This blog post deals with a missing jsch library like so:

There are 2 ways to solve this problem, depending on your setup.

1.) If you're using ant installed on your machine, example on c:\apache-ant. Just place the jsch.jar in it's lib folder.

2.) In case you are using eclipse's ant plugin.

  • Open eclipse
  • Click Window->Preference
  • In type filter textbox type "ant"
  • Click Runtime
  • Expand "Global Entries"
  • Add external jar, and locate jsch.jar in your system

Solution 2:[2]

Try to update the project if it is a maven project.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 VonC
Solution 2 lioune Sr