mirror of https://github.com/apache/jclouds.git
changed to beta-9a as default
This commit is contained in:
parent
20c23e7962
commit
37fc5505ff
12
README.txt
12
README.txt
|
@ -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
|
||||
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 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):
|
||||
// init
|
||||
context = new BlobStoreContextFactory().createContext(
|
||||
"s3",
|
||||
"aws-s3",
|
||||
accesskeyid,
|
||||
secretaccesskey);
|
||||
blobStore = context.getBlobStore();
|
||||
|
@ -84,7 +84,7 @@ BlobStore Example (Clojure):
|
|||
Compute Example (Java):
|
||||
// init
|
||||
context = new ComputeServiceContextFactory().createContext(
|
||||
"ec2",
|
||||
"aws-ec2",
|
||||
accesskeyid,
|
||||
secretaccesskey,
|
||||
ImmutableSet.of(new Log4JLoggingModule(),
|
||||
|
@ -102,7 +102,7 @@ Compute Example (Clojure):
|
|||
|
||||
; create a compute service using ssh and log4j extensions
|
||||
(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
|
||||
; these will have your ~/.ssh/id_rsa.pub authorized when complete
|
||||
|
@ -110,13 +110,13 @@ Compute Example (Clojure):
|
|||
(create-nodes "mycluster" 2))
|
||||
|
||||
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)
|
||||
* snapshot repo: https://oss.sonatype.org/content/repositories/snapshots
|
||||
|
||||
Links:
|
||||
* 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/
|
||||
* community: http://code.google.com/p/jclouds/wiki/AppsThatUseJClouds
|
||||
* user group: http://groups.google.com/group/jclouds
|
||||
|
|
Loading…
Reference in New Issue