You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by el...@apache.org on 2016/08/17 13:59:57 UTC

svn commit: r1756635 - /mina/site/trunk/content/mina-project/faq.mdtext

Author: elecharny
Date: Wed Aug 17 13:59:57 2016
New Revision: 1756635

URL: http://svn.apache.org/viewvc?rev=1756635&view=rev
Log:
Updated the FAQ to inform users taht Java 7 is needed

Modified:
    mina/site/trunk/content/mina-project/faq.mdtext

Modified: mina/site/trunk/content/mina-project/faq.mdtext
URL: http://svn.apache.org/viewvc/mina/site/trunk/content/mina-project/faq.mdtext?rev=1756635&r1=1756634&r2=1756635&view=diff
==============================================================================
--- mina/site/trunk/content/mina-project/faq.mdtext (original)
+++ mina/site/trunk/content/mina-project/faq.mdtext Wed Aug 17 13:59:57 2016
@@ -43,11 +43,11 @@ It is known to perform as good as C/C++
 
 ### Which version of MINA should I use?
 
-Use the latest point-release of 2.0 (for Java 5 or above). 1.0 and 1.1 aren't maintained anymore.
+Use the latest point-release of 2.0 (for Java 7 or above). 1.0 and 1.1 aren't maintained anymore.
 
 ### What is required to build/run MINA?
 
-JDK 1.5 or above is required to build MINA. But MINA runs perfect with JDK 1.4 only if you don't use SSLFilter which uses Java 5 SSLEngine. This means JDK 1.5 or above is required for you to use SSL with MINA.
+JDK 7 or above is required to build MINA. 
 
 MINA core module depends on two libraries, SLF4J and backport-util-concurrent (for 1.0):
 
@@ -83,7 +83,7 @@ Yes. MINA doesn't close any connections
 
 ### Does MINA support SSL/TLS and SASL out-of-the-box?
 
-We support SSL/TLS out-of-the-box.  Please refer to `SSLFilter`.  It also provides a way to implement <TT>StartTLS</TT>.  JDK 1.5 provides complete SASL support which works well with MINA.
+We support SSL/TLS out-of-the-box.  Please refer to `SSLFilter`.  It also provides a way to implement <TT>StartTLS</TT>.  JDK 7 provides complete SASL support which works well with MINA.
 
 ### Do I need to make my IoHandler thread-safe?