How can I define jms/MyQueue in the following code sample using maven profile / properties?
@MessageDriven(activationConfig = {
@ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
@ActivationConfigProperty(propertyName = "destinationLookup", propertyValue = "jms/MyQueue") })
public class SomeMessageDrivenBean implements MessageListener {
....