Feature.xml file generated for camel contains duplicate bundles. It must be
cleaned up
--------------------------------------------------------------------------------------
Key: SMX4-240
URL: https://issues.apache.org/activemq/browse/SMX4-240
Project: ServiceMix 4
Issue Type: Improvement
Reporter: Charles Moulliard
Example of what is generated now :
<feature name="camel-core">
<bundle>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxb-api-2.1/1.3-fuse-SNAPSHOT</bundle>
<bundle>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.activation-api-1.1/1.3-fuse-SNAPSHOT</bundle>
<bundle>mvn:org.apache.camel/camel-core/1.x-fuse-SNAPSHOT</bundle>
</feature>
<feature name="camel-spring">
<bundle>mvn:org.apache.geronimo.specs/geronimo-jta_1.1_spec/1.1.1</bundle>
<bundle>mvn:org.springframework/spring-tx/2.5.6</bundle>
<feature>camel-core</feature>
<bundle>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.activation-api-1.1/1.3-fuse-SNAPSHOT</bundle>
-- bundle repeated (already exist in camel-core)
<bundle>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxb-api-2.1/1.3-fuse-SNAPSHOT</bundle>
-- bundle repeated (already exist in camel-core)
<bundle>mvn:org.apache.camel/camel-spring/1.x-fuse-SNAPSHOT</bundle>
</feature>
must be
<feature name="camel-core">
<bundle>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxb-api-2.1/1.3-fuse-SNAPSHOT</bundle>
<bundle>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.activation-api-1.1/1.3-fuse-SNAPSHOT</bundle>
<bundle>mvn:org.apache.camel/camel-core/1.x-fuse-SNAPSHOT</bundle>
</feature>
<feature name="camel-spring">
<bundle>mvn:org.apache.geronimo.specs/geronimo-jta_1.1_spec/1.1.1</bundle>
<bundle>mvn:org.springframework/spring-tx/2.5.6</bundle>
<bundle>mvn:org.apache.camel/camel-spring/1.x-fuse-SNAPSHOT</bundle>
</feature>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.