Hello
It is possible to downgrade a single bundle when creating a launcher with
the maven-launchpad-plugin?
I've tried:
<defaultBundleList>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.launchpad</artifactId>
<version>7-SNAPSHOT</version>
</defaultBundleList>
<bundleExclusions>
<bundle>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.servlets.resolver</artifactId>
<version>2.1.2</version>
</bundle>
</bundleExclusions>
<additionalBundles>
<bundle>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.servlets.resolver</artifactId>
<version>2.1.0</version>
</bundle>
</additionalBundles>
but this just seems to remove the bundle. The reason I need to downgrade is
that I need to have Webdav support which isn't with the latest version (
SLING-2443 <https://issues.apache.org/jira/browse/SLING-2443>).
Cheers,
Reto