changed to beta-9a as default

This commit is contained in:
Adrian Cole 2011-02-13 23:46:37 +01:00
parent 20c23e7962
commit 37fc5505ff
1 changed files with 6 additions and 6 deletions

View File

@ -26,7 +26,7 @@ two abstractions at the moment: compute and blobstore. compute helps you
bootstrap machines in the cloud. blobstore helps you manage key-value bootstrap machines in the cloud. blobstore helps you manage key-value
data. data.
our current version is 1.0-beta-8 our current version is 1.0-beta-9a
our dev version is 1.0-SNAPSHOT our dev version is 1.0-SNAPSHOT
our compute api supports: aws-ec2, gogrid, cloudservers (generic), cloudservers-us, our compute api supports: aws-ec2, gogrid, cloudservers (generic), cloudservers-us,
@ -61,7 +61,7 @@ If you want access to all jclouds components, include the maven dependency org.j
BlobStore Example (Java): BlobStore Example (Java):
// init // init
context = new BlobStoreContextFactory().createContext( context = new BlobStoreContextFactory().createContext(
"s3", "aws-s3",
accesskeyid, accesskeyid,
secretaccesskey); secretaccesskey);
blobStore = context.getBlobStore(); blobStore = context.getBlobStore();
@ -84,7 +84,7 @@ BlobStore Example (Clojure):
Compute Example (Java): Compute Example (Java):
// init // init
context = new ComputeServiceContextFactory().createContext( context = new ComputeServiceContextFactory().createContext(
"ec2", "aws-ec2",
accesskeyid, accesskeyid,
secretaccesskey, secretaccesskey,
ImmutableSet.of(new Log4JLoggingModule(), ImmutableSet.of(new Log4JLoggingModule(),
@ -102,7 +102,7 @@ Compute Example (Clojure):
; create a compute service using ssh and log4j extensions ; create a compute service using ssh and log4j extensions
(def compute (def compute
(compute-service "terremark" "user" "password" :ssh :log4j)) (compute-service "trmk`-ecloud" "user" "password" :ssh :log4j))
; use the default node template and launch a couple nodes ; use the default node template and launch a couple nodes
; these will have your ~/.ssh/id_rsa.pub authorized when complete ; these will have your ~/.ssh/id_rsa.pub authorized when complete
@ -110,13 +110,13 @@ Compute Example (Clojure):
(create-nodes "mycluster" 2)) (create-nodes "mycluster" 2))
Downloads: Downloads:
* distribution zip: http://jclouds.googlecode.com/files/jclouds-1.0-beta-8.zip * distribution zip: http://jclouds.googlecode.com/files/jclouds-1.0-beta-9a.zip
* maven repo: http://repo2.maven.org/maven2 (maven central - the default repository) * maven repo: http://repo2.maven.org/maven2 (maven central - the default repository)
* snapshot repo: https://oss.sonatype.org/content/repositories/snapshots * snapshot repo: https://oss.sonatype.org/content/repositories/snapshots
Links: Links:
* project page: http://code.google.com/p/jclouds/ * project page: http://code.google.com/p/jclouds/
* javadocs (1.0-beta-8): http://jclouds.rimuhosting.com/apidocs/ * javadocs (1.0-beta-9a): http://jclouds.rimuhosting.com/apidocs/
* javadocs (1.0-SNAPSHOT): http://jclouds.rimuhosting.com/apidocs-SNAPSHOT/ * javadocs (1.0-SNAPSHOT): http://jclouds.rimuhosting.com/apidocs-SNAPSHOT/
* community: http://code.google.com/p/jclouds/wiki/AppsThatUseJClouds * community: http://code.google.com/p/jclouds/wiki/AppsThatUseJClouds
* user group: http://groups.google.com/group/jclouds * user group: http://groups.google.com/group/jclouds