> @@ -37,7 +36,7 @@ limitations under the License.
> <osgi.import>
> javax.script,
> org.codehaus.groovy.jsr223,
> - org.jclouds.karaf.cache*;version=${project.version},
> + org.jclouds.karaf.cache*;version=${jclouds.version},
> org.jclouds.compute;version=${jclouds.version},
Now **this** is a tricky one! `${project.version}` or
`${project.parent.version}` will not work here, since I guess the Maven release
plugin _won't_ identify this as an external dependency, and won't give you the
chance to specify which "main" version we need.
The only thing I could imagine would work here would be
`${project.parent.parent.version}` (i.e. the version of jclouds-project), but
I'm not sure if Maven handles that. We'll need to run `mvn release:prepare` and
examine the output to verify, I think...
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-karaf/pull/22/files#r5493784