summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.ssh.apache.agent/BUILD
Commit message (Collapse)AuthorAgeFilesLines
* Bazel: Format build files with buildifierDavid Ostrovsky2022-01-201-1/+1
| | | | Change-Id: I1ff38237058d11a3f61acc881c504382ff4b7e08
* sshd: add support for ssh-agentThomas Wolf2021-11-031-0/+22
Add a simple SSH agent connector using JNA. Include com.sum.jna and com.sun.jna.platform in the target platform. JNA is used to communicate through Unix domain sockets with ssh-agent, and if on Windows, to communicate via shared memory with Pageant. The new bundle o.e.j.ssh.apache.agent is an OSGi fragment so that the java.util.ServiceLoader can find the provided factory without further ado in OSGi environments. Adapt both maven and bazel builds to include the new bundle. Manually tested on OS X, CentOS 7, and Win10 with Pageant 0.76. Tested by installing JGit built from this change into freshly downloaded Eclipse 2021-12 M1, and then doing git fetches via SSH with different ~/.ssh/config settings (explicit IdentityFile, without any but a key in the agent, with no keys and a key in the agent and IdentitiesOnly=yes (must fail)). Bug: 541274 Bug: 541275 Change-Id: I34e85467293707dbad1eb44d1f40fc2e70ba3622 Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>