0

https://github.com/rtyley/spongycastle/archive/spongy-master.zip (SpongeCastle ライブラリ)から jar ファイルをコンパイルしてビルドしたいと思います。

ただし、MVN をテストしようとすると、MVN に次のエラーが表示されます (JDK 1.6.0_37、Maven 3.0.4、Mac OSX snowleopard)。

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.7.2:test (default-test) on project scpg-jdk15on: There are test failures.
[ERROR] 
[ERROR] Please refer to /Users/Lara/Desktop/BlowFish/spongycastle-spongy-master/scpg-jdk15on/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 :scpg-jdk15on

どうすればエラーを解決できますか?

4

2 に答える 2

0

私のコメントで述べたように、それはあなたのjdkバージョンの問題かもしれませんが、何か他のものかもしれません...

これを読むことをお勧めします: http://www.randombugs.com/java/javalangsecurityexception-jce-authenticate-provider-bc.html

問題の特定/解決に役立つと思います。

于 2013-02-01T18:10:41.787 に答える
0

「default-test」という名前の単体テストが失敗していて、maven が jar をビルドできないようになっているようです。失敗したテストの原因を調査して修正するか、以下を使用してテストを実行せずに jar のビルドを試みることができます。

 mvn install -DskipTests
于 2013-02-01T17:59:35.400 に答える