Since Mina Core has been released version 2.1.x which incompantible with
2.0.x.   and the MINA SSHD depended on the MINA Core 2.0.x as the offical
website said.    
     So, my question is:  Is it safe to replace SSHD's dependency to 2.1.x
in my project in pom.xml. ( I have tried to do so , and it's compilered
sucessfully, but I still uncertain if there are  any other problems)
     Thanks for  your kind help!

<dependencyManagement>
        <dependencies>
             <dependency>
                   <groupId>org.apache.mina</groupId>
                   <artifactId>mina-core</artifactId>
                   <version>2.1.3>
               </dependency>
               ...
         <dependencies>
</dependencyManagement>

<dependencies>
    <dependency>
            <groupId>org.apache.sshd</groupId>
            <artifactId>sshd-mina</artifactId>
            <version>2.2.0</version>
             <exclusions>
                   <exclusion>
                      <groupId>org.apache.mina</groupId>
                      <artifactId>mina-core</artifactId>
                    </exclusion>
             </exclusions>
    <dependency>
</dependencies>




-----
Hello World
24928705037
--
Sent from: 
http://apache-mina.10907.n7.nabble.com/Apache-MINA-Developer-Forum-f6809.html

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to