I have been trying to deploy the amqp bundles on Virgo and have run into an issue. For each bundle, the template.mf has to following Import-Template:
This causes a side effect, namely the manifest is now importing the wrong version of Spring AMQP:Code:... Import-Template: org.springframework.*;version="[3.0.5, 4.0.0)", ...
So that last bit there is an issue; there is no version="[3.0.5, 4.0.0)" for amqp yet, rather I would expect it to be version="[1.0.1, 1.0.1)".Code:... Import-Package: com.ericsson.otp.erlang,com.rabbitmq.client;version="[ 1.8.1, 2.0.0)",com.rabbitmq.utility;version="[1.8.1, 2.0.0)",javax.na ming,org.aopalliance.aop,org.apache.commons.logging;version="[1.1.1, 2.0.0)",org.springframework.amqp;version="[3.0.5, 4.0.0)" ...
The error that occurs in Virgo RT is:
Thanks,Code:An Import-Package could not be resolved. Caused by missing constraint in bundle <org.springframework.amqp.rabbit_1.0.0.M3> constraint: <Import-Package: org.springframework.amqp; version="[3.0.5,4.0.0)">
Tim


Reply With Quote