Skip to content

Commit

Permalink
Merge pull request #578 from jglick/jsch-JENKINS-62767
Browse files Browse the repository at this point in the history
[JENKINS-62767] Need to bundle org.eclipse.jgit.ssh.jsch
  • Loading branch information
MarkEWaite committed Jul 7, 2020
2 parents 66a0eee + 5e6d359 commit ea577ce
Showing 1 changed file with 19 additions and 16 deletions.
35 changes: 19 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,6 @@
<artifactId>org.eclipse.jgit</artifactId>
<version>${jgit.version}</version>
<exclusions>
<exclusion><!-- Provided by JSch plugin -->
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
</exclusion>
<exclusion>
<!-- Provided by apache-httpcomponents-client-4-api -->
<groupId>org.apache.httpcomponents</groupId>
Expand All @@ -117,10 +113,6 @@
<artifactId>org.eclipse.jgit.http.server</artifactId>
<version>${jgit.version}</version>
<exclusions>
<exclusion><!-- Provided by JSch plugin -->
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
</exclusion>
<exclusion>
<!-- Provided by apache-httpcomponents-client-4-api -->
<groupId>org.apache.httpcomponents</groupId>
Expand All @@ -139,10 +131,6 @@
<artifactId>org.eclipse.jgit.http.apache</artifactId>
<version>${jgit.version}</version>
<exclusions>
<exclusion><!-- Provided by JSch plugin -->
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
</exclusion>
<exclusion>
<!-- Provided by apache-httpcomponents-client-4-api -->
<groupId>org.apache.httpcomponents</groupId>
Expand All @@ -165,10 +153,6 @@
<artifactId>org.eclipse.jgit.lfs</artifactId>
<version>${jgit.version}</version>
<exclusions>
<exclusion><!-- Provided by JSch plugin -->
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
</exclusion>
<exclusion>
<!-- Provided by apache-httpcomponents-client-4-api -->
<groupId>org.apache.httpcomponents</groupId>
Expand All @@ -181,6 +165,25 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit.ssh.jsch</artifactId>
<version>${jgit.version}</version>
<exclusions>
<exclusion> <!-- provided by jenkins-core -->
<groupId>com.jcraft</groupId>
<artifactId>jzlib</artifactId>
</exclusion>
<exclusion> <!-- Provided by jsch plugin -->
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
</exclusion>
<exclusion> <!-- provided by jenkins-core -->
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>structs</artifactId>
Expand Down

0 comments on commit ea577ce

Please sign in to comment.