ivan-ra opened a new issue, #616:
URL: https://github.com/apache/camel-karaf/issues/616
3.22.4 released last month contains wrong feature
```
<feature name='xml-specs-api' version='${servicemix-specs-version}'
start-level='10'>
<bundle
dependency='true'>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.activation-api-1.1/${servicemix-specs-version}</bundle>
<bundle
dependency='true'>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.stax-api-1.0/${servicemix-specs-version}</bundle>
<bundle
dependency="true">mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxws-api-2.2/${servicemix-specs-version}</bundle>
<bundle
dependency="true">mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxrs-api-2.1/${servicemix-specs-version}</bundle>
<bundle
dependency="true">mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxb-api-2.3/${servicemix-jaxb-version}</bundle>
<bundle>mvn:org.codehaus.woodstox/stax2-api/${stax2-api-bundle-version}</bundle>
<bundle>mvn:org.codehaus.woodstox/woodstox-core-asl/${woodstox-version}</bundle>
<bundle>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.jaxb-runtime/${jaxb-bundle-version}</bundle>
</feature>
```
but should be
```
<feature name='xml-specs-api' version='${servicemix-specs-version}'
start-level='10'>
<bundle
dependency='true'>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.activation-api-1.1/${servicemix-specs-version}</bundle>
<bundle
dependency='true'>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.stax-api-1.0/${servicemix-specs-version}</bundle>
<bundle
dependency="true">mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxws-api-2.2/${servicemix-specs-version}</bundle>
<bundle
dependency="true">mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxrs-api-2.1/${servicemix-specs-version}</bundle>
<bundle
dependency="true">mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxb-api-2.3/${servicemix-jaxb-version}</bundle>
<bundle>mvn:org.codehaus.woodstox/stax2-api/${stax2-api-bundle-version}</bundle>
<bundle>mvn:com.fasterxml.woodstox/woodstox-core/${woodstox-core-version}</bundle>
<bundle>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.jaxb-runtime/${jaxb-bundle-version}</bundle>
</feature>
```
(change mvn:org.codehaus.woodstox/woodstox-core-asl/${woodstox-version} ->
com.fasterxml.woodstox/woodstox-core/${woodstox-core-version})
Bundle org.codehaus.woodstox/stax2-api v4+ compiled with
**com.fasterxml.woodstox/woodstox-core**, not with
org.codehaus.woodstox/woodstox-core-asl. Wrong dependency causes
MethodNotFoundException in some cases. This already fixed in main branch.
I know camel3 closed, but 3.22.x is still LTS and bugged...
Camel 3 is still in demand until release karaf with pax web 10 support
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]