diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2022-03-04 00:30:36 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2022-03-04 00:30:36 +0100 |
commit | c77284ab7fcccaa3db12fddd29614b36cedccefd (patch) | |
tree | 1601808b77df46f1e61aa923dc3c14d2332d05e5 /org.eclipse.jgit.junit.ssh | |
parent | aed354a1edbce4e683b3ef2060d277bbf29af6a0 (diff) | |
download | jgit-c77284ab7fcccaa3db12fddd29614b36cedccefd.tar.gz jgit-c77284ab7fcccaa3db12fddd29614b36cedccefd.zip |
Exclude transitive dependencies of sshd-sftp
We don't need the dependencies of sshd-sftp to sshd-common and
sshd-core since they are contained in sshd-osgi.
Excluding them helps the dash IP log tool to not list them as required
dependencies of jgit.
Change-Id: I85bce4dca1b99ba880cf3e909fac9669c75e7854
Diffstat (limited to 'org.eclipse.jgit.junit.ssh')
-rw-r--r-- | org.eclipse.jgit.junit.ssh/pom.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/org.eclipse.jgit.junit.ssh/pom.xml b/org.eclipse.jgit.junit.ssh/pom.xml index f6fb01751e..9c19e4986b 100644 --- a/org.eclipse.jgit.junit.ssh/pom.xml +++ b/org.eclipse.jgit.junit.ssh/pom.xml @@ -55,6 +55,16 @@ <groupId>org.apache.sshd</groupId> <artifactId>sshd-sftp</artifactId> <version>${apache-sshd-version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.sshd</groupId> + <artifactId>sshd-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.sshd</groupId> + <artifactId>sshd-common</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> |