hi there, I need to generate jms su with new endpoints(jms-consumer and jms-provider configured in same xbean) as follows
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns:jms="http://servicemix.apache.org/jms/1.0" xmlns:esb="http://esbinaction.com/insurance"> <jms:consumer service="esb:insuranceReceiver" endpoint="jmsEndpoint" targetService="esb:insuranceDSLRouter" destinationName="insurance.in" connectionFactory="#connectionFactory" marshaler="#InsuranceJMSMarshaler"/> <jms:provider service="esb:luxuryCarSender" endpoint="jmsEndpoint" destinationName="luxurycar.send" connectionFactory="#connectionFactory"/> <bean id="InsuranceJMSMarshaler" class="esb.dzone.servicemix.util.InsuranceJMSMarshaler"/> <bean id="connectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory"> <property name="brokerURL" value="tcp://localhost:61616" /> </bean> </beans> which maven archetype can be used to generate above mentioned jms su with new endpoints? can anybody give me the command for generating it? Regards Brijesh N K -- View this message in context: http://www.nabble.com/maven-archetype-for-generating-jms-su-with-new-endpoints-tp25685445p25685445.html Sent from the ServiceMix - User mailing list archive at Nabble.com.
