The exception below is thrown when compiling activemq-optional.
"
[WARNING] Unable to get resource from repository central (
http://ibiblio.org/maven2/
)
[INFO] [compiler:compile]
Compiling 12 source files to D:\logicblaze\working-source\activemq\activemq-optional\target\classes
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Compilation failure
D:\logicblaze\working-source\activemq\activemq-optional\src\main\java\org\apache\activemq\transport\https\HttpsTransportServer.java:
[51,36] cannot find symbol
symbol : method setAlgorithm(java.lang.String)
location: class org.mortbay.jetty.security.SslSocketConnector"
--------------------------------------------------------------------------------
There was an update made on jetty dependency version from 6.0.0rc0 to 6.0.0rc2 wherein the method "setAlgorithm(String)" of "org.mortbay.jetty.security.SslSocketConnector" was changed to a more specific methods "setSecureRandomAlgorithm(String), setSslKeyManagerFactoryAlgorithm(String) and setSslTrustManagerFactoryAlgorithm(String)". This change caused the class "HttpsTransportServer." to throw an exception since it can no longer find the "setAlgorithm(String)" method.