> + <relativePath>../../project/pom.xml</relativePath>
> + </parent>
> + <groupId>org.apache.jclouds.api</groupId>
> + <artifactId>chef</artifactId>
> + <packaging>bundle</packaging>
> + <name>jclouds Chef api</name>
> + <description>jclouds components to access Chef</description>
> +
> + <properties>
> + <test.chef.endpoint>http://localhost:4000</test.chef.endpoint>
> + <test.chef.api-version />
> + <test.chef.build-version />
> + <test.chef.identity>chef-webui</test.chef.identity>
> + <test.chef.credential>${user.home}/.chef/webui.pem</test.chef.credential>
> + <jclouds.osgi.import>
> + org.project.version=${project.version},
It turns out that this line is causing the karaf itest failures. It looks like
a regex search and replace accident.
Should be:
```
org.jclouds;version=${project.version},
```
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/536/files#r18411350