> +<dependency>
> +     <groupId>org.apache.jclouds</groupId>
> +     <artifactId>jclouds-all</artifactId>
> +     <version>1.8.0</version>
> +</dependency>
> +<dependency>
> +     <groupId>org.apache.jclouds.driver</groupId>
> +     <artifactId>jclouds-log4j</artifactId>
> +     <version>1.8.0</version>
> +</dependency>
> +<dependency>
> +     <groupId>org.apache.jclouds.driver</groupId>
> +     <artifactId>jclouds-sshj</artifactId>
> +     <version>1.8.0</version>
> +</dependency>
> +* Note - make sure that the dependency is 'JAR'

I'm okay with the guides being a bit opinionated about what dependencies to use 
but, as @demobox suggested, this subsection (if you're keeping it) would 
require more explanation. Namely what the alternatives are for the drivers. I'd 
also switch

``` xml
<groupId>org.apache.jclouds</groupId>
<artifactId>jclouds-all</artifactId>
<version>1.8.0</version>
```
to
``` xml
<groupId>org.apache.jclouds.provider</groupId>
<artifactId>aws-ec2</artifactId>
<version>{{ site.latest_version }}</version>
```

jclouds-all is a lot! Note the use of `{{ site.latest_version }}`. This will 
always put the latest jclouds version into the code so you don't have to update 
it every time a new version is released. You should use it everywhere you use 
the version.

+1 to creating a "Getting Started with jclouds and Eclipse" guide if you're 
feeling up to it @yaronr :)

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-site/pull/129/files#r18478299

Reply via email to