This is an automated email from the ASF dual-hosted git repository.

twolf pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mina-sshd.git


The following commit(s) were added to refs/heads/master by this push:
     new 9fcea20  Downgrade JGit to 5.13.0.202109080827-r
9fcea20 is described below

commit 9fcea204326cbcf0f08eda65bcf6e864c4b315d2
Author: Thomas Wolf <tw...@apache.org>
AuthorDate: Sun Dec 26 14:59:03 2021 +0100

    Downgrade JGit to 5.13.0.202109080827-r
    
    As of version 6.0.0, JGit requires Java 11 to work. Apache MINA sshd
    has Java 8 as base required execution environment (BREE), so it cannot
    use JGit 6.0.0 until it also changes its BREE to Java 11 at least for
    the sshd-git bundle.
---
 pom.xml | 21 ++++++++++-----------
 1 file changed, 10 insertions(+), 11 deletions(-)

diff --git a/pom.xml b/pom.xml
index be8ff0b..7ee1878 100644
--- a/pom.xml
+++ b/pom.xml
@@ -109,9 +109,9 @@
         <groovy.version>3.0.9</groovy.version>
         <bouncycastle.version>1.70</bouncycastle.version>
         <slf4j.version>1.7.32</slf4j.version>
-        <logback.version>1.2.9</logback.version>        
+        <logback.version>1.2.9</logback.version>
         <spring.version>5.3.14</spring.version>
-        <jgit.version>6.0.0.202111291000-r</jgit.version>
+        <jgit.version>5.13.0.202109080827-r</jgit.version>
         <junit.version>4.13.2</junit.version>
         <bytebuddy.version>1.12.6</bytebuddy.version>
         <testcontainers.version>1.16.2</testcontainers.version>
@@ -446,7 +446,6 @@
                 <artifactId>bcprov-jdk15on</artifactId>
                 <version>${bouncycastle.version}</version>
             </dependency>
-                <!-- Referenced indirectly by JGit -->
             <dependency>
                 <groupId>org.bouncycastle</groupId>
                 <artifactId>bcutil-jdk15on</artifactId>
@@ -490,7 +489,7 @@
                 <artifactId>logback-classic</artifactId>
                 <version>${logback.version}</version>
             </dependency>
-           
+
             <dependency>
                 <groupId>com.jcraft</groupId>
                 <artifactId>jsch</artifactId>
@@ -550,7 +549,7 @@
                 <artifactId>mockito-core</artifactId>
                 <version>4.2.0</version>
             </dependency>
-            
+
                 <!-- Referenced indirectly by Bytebuddy -->
             <dependency>
                 <groupId>com.google.code.findbugs</groupId>
@@ -773,24 +772,24 @@
                             <groupId>org.apache.maven.scm</groupId>
                             <artifactId>maven-scm-api</artifactId>
                             <version>${scm.plugin.version}</version>
-                        </dependency>                    
+                        </dependency>
                         <dependency>
                             <groupId>org.apache.maven.scm</groupId>
                             <artifactId>maven-scm-provider-gitexe</artifactId>
                             <version>${scm.plugin.version}</version>
-                        </dependency>                    
+                        </dependency>
                         <dependency>
                             <groupId>org.apache.maven.scm</groupId>
                             
<artifactId>maven-scm-provider-svn-commons</artifactId>
                             <version>${scm.plugin.version}</version>
-                        </dependency>                    
+                        </dependency>
                         <dependency>
                             <groupId>org.apache.maven.scm</groupId>
                             <artifactId>maven-scm-provider-svnexe</artifactId>
                             <version>${scm.plugin.version}</version>
-                        </dependency>                    
+                        </dependency>
                     </dependencies>
-                </plugin>                
+                </plugin>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-release-plugin</artifactId>
@@ -1121,7 +1120,7 @@
                     <configuration>
                         <skipXmlFormatting>true</skipXmlFormatting>
                         <skipHtmlFormatting>true</skipHtmlFormatting>
-                        <skipJsonFormatting>true</skipJsonFormatting>  
+                        <skipJsonFormatting>true</skipJsonFormatting>
                         
<cachedir>${project.build.outputDirectory}${file.separator}.cache</cachedir>
                         
<configFile>${workspace.root.dir}${file.separator}sshd-eclipse-formatter-config.xml</configFile>
                         <lineEnding>LF</lineEnding>

Reply via email to