【发布时间】:2016-11-05 17:46:52
【问题描述】:
我正在尝试在我的 Arch Linux Box 上构建 Apache FTP Server。
操作系统:Arch Linux 64 位(最新)。 内核:4.8.6-1。 Java:甲骨文 1.8.0_112。 Maven:3.3.9。
Open-SSL 和 TLS 均已安装。
每当我在构建目录中运行“MVN 安装”时,都会出现以下错误。我相信问题是由于 Java 8 禁用 SSL v3.0 以支持 TLS?如果是这样,那么只使用旧版本的 java 编译似乎是个坏主意。不应该使用这个库,还是有更好的方法来处理这个?
Results :
Tests in error:
testStoreWithProtPAndReturnToProtCInPassiveMode(org.apache.ftpserver.ssl.MinaExplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testCommandChannel(org.apache.ftpserver.ssl.MinaExplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testReissueAuth(org.apache.ftpserver.ssl.MinaExplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testIsSecure(org.apache.ftpserver.ssl.MinaExplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testStoreWithProtPInPassiveMode(org.apache.ftpserver.ssl.MinaExplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testStoreWithProtPInActiveMode(org.apache.ftpserver.ssl.MinaExplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testStoreWithProtPAndReturnToProtCInActiveMode(org.apache.ftpserver.ssl.MinaExplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testListEmptyDir(org.apache.ftpserver.ssl.MinaExplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testReceiveEmptyFile(org.apache.ftpserver.ssl.MinaExplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testThatDataChannelIsSecure(org.apache.ftpserver.ssl.MinaImplicitDataChannelTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testStoreWithoutProtPInActiveMode(org.apache.ftpserver.ssl.MinaImplicitDataChannelTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testStoreWithProtPInPassiveMode(org.apache.ftpserver.ssl.MinaImplicitDataChannelTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testStoreWithProtPAndReturnToProtCInPassiveMode(org.apache.ftpserver.ssl.MinaImplicitDataChannelTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testCommandChannel(org.apache.ftpserver.ssl.MinaImplicitDataChannelTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testReissueAuth(org.apache.ftpserver.ssl.MinaImplicitDataChannelTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testIsSecure(org.apache.ftpserver.ssl.MinaImplicitDataChannelTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testStoreWithProtPInActiveMode(org.apache.ftpserver.ssl.MinaImplicitDataChannelTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testStoreWithProtPAndReturnToProtCInActiveMode(org.apache.ftpserver.ssl.MinaImplicitDataChannelTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testListEmptyDir(org.apache.ftpserver.ssl.MinaImplicitDataChannelTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testReceiveEmptyFile(org.apache.ftpserver.ssl.MinaImplicitDataChannelTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testStoreWithProtPAndReturnToProtCInPassiveMode(org.apache.ftpserver.ssl.MinaImplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testCommandChannel(org.apache.ftpserver.ssl.MinaImplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testReissueAuth(org.apache.ftpserver.ssl.MinaImplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testIsSecure(org.apache.ftpserver.ssl.MinaImplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testStoreWithProtPInPassiveMode(org.apache.ftpserver.ssl.MinaImplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testStoreWithProtPInActiveMode(org.apache.ftpserver.ssl.MinaImplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testStoreWithProtPAndReturnToProtCInActiveMode(org.apache.ftpserver.ssl.MinaImplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testListEmptyDir(org.apache.ftpserver.ssl.MinaImplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
testReceiveEmptyFile(org.apache.ftpserver.ssl.MinaImplicitSSLTest): No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
Tests run: 655, Failures: 0, Errors: 29, Skipped: 0
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] Apache FtpServer Parent ............................ SUCCESS [ 0.452 s]
[INFO] Apache Ftplet API .................................. SUCCESS [ 1.085 s]
[INFO] Apache FtpServer Core .............................. FAILURE [ 21.201 s]
[INFO] FtpServer Spring web project example ............... SKIPPED
[INFO] FtpServer OSGi Ftplet service example .............. SKIPPED
[INFO] FtpServer OSGi Spring-DM example ................... SKIPPED
[INFO] Apache FtpServer Examples .......................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 23.136 s
[INFO] Finished at: 2016-11-05T13:36:47-04:00
[INFO] Final Memory: 21M/491M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.8.1:test (default-test) on project ftpserver-core: There are test failures.
[ERROR]
[ERROR] Please refer to /home/USER/build/ftpserver/core/target/surefire-reports for the individual test results.
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <goals> -rf :ftpserver-core
【问题讨论】: