> + * distributed under the License is distributed on an "AS IS" BASIS,
> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
> +package org.jclouds.profitbricks;
> +
> +import java.net.URI;
> +
> +import org.jclouds.providers.ProviderMetadata;
> +import org.jclouds.providers.internal.BaseProviderMetadata;
> +
> +/**
> + * Implementation of {@link ProviderMetadata} for ProfitBricks's Cloud
> Compute provider.
> + */
> +public class ProfitBricksProviderMetadata extends BaseProviderMetadata {
Add this:
```xml
<dependency>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value</artifactId>
<scope>provided</scope>
</dependency>
```
Note that in your ide, you need to change your compiler settings to enable
annotation processing.
During work with auto-value (suggested in another note), you may at times find
AutoValue_YourClass not found. If that happens, click rebuild.
https://github.com/google/auto
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/72/files#r19648880