From f9bb4b208e41357c140db5e0b05050df53515980 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Sat, 29 Jun 2013 05:25:10 -0400 Subject: [PATCH] JCLOUDS-158: jclouds version to 1.6.1-incubating, Scala version to 2.10.2 Also minor formatting changes to README and usage message --- blobstore-scala-filesystem/README.md | 2 +- blobstore-scala-filesystem/build.sbt | 4 ++-- .../src/main/scala/Main.scala | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/blobstore-scala-filesystem/README.md b/blobstore-scala-filesystem/README.md index 48be87d..b6e3a67 100644 --- a/blobstore-scala-filesystem/README.md +++ b/blobstore-scala-filesystem/README.md @@ -12,7 +12,7 @@ Run `sbt` from the root of your project and invoke ``` run ``` -where basedir is a directory in which the container will be created. E.g. if your basedir is `/home/blobstore` and you want to store "myblob" in "mycontainer", run +where basedir is a directory in which the container will be created. E.g. if your basedir is `/home/blobstore` and you want to store _myblob_ in _mycontainer_, run ``` run /home/blobstore mycontainer myblob ``` diff --git a/blobstore-scala-filesystem/build.sbt b/blobstore-scala-filesystem/build.sbt index d044bc8..82e7f9d 100644 --- a/blobstore-scala-filesystem/build.sbt +++ b/blobstore-scala-filesystem/build.sbt @@ -1,10 +1,10 @@ name := "blobstore-scala-filesystem" -scalaVersion := "2.10.1" +scalaVersion := "2.10.2" version := "1.0-SNAPSHOT" -libraryDependencies ++= Seq( "org.jclouds.api" % "filesystem" % "1.6.0", +libraryDependencies ++= Seq( "org.apache.jclouds.api" % "filesystem" % "1.6.1-incubating", "com.google.code.findbugs" % "jsr305" % "1.3.+", "com.jsuereth" %% "scala-arm" % "1.3" ) diff --git a/blobstore-scala-filesystem/src/main/scala/Main.scala b/blobstore-scala-filesystem/src/main/scala/Main.scala index 11d27af..d8222fb 100644 --- a/blobstore-scala-filesystem/src/main/scala/Main.scala +++ b/blobstore-scala-filesystem/src/main/scala/Main.scala @@ -24,12 +24,12 @@ import resource._ /** * Demonstrates the use of the filesystem [[org.jclouds.blobstore.BlobStore]] in Scala * - * Usage is: run \"basedir\" \"containername\" \"blobname\" + * Usage is: run <basedir> <containername> <blobname> * * @author adisesha */ object Main extends App { - require(args.length == 3, "Invalid number of parameters. Usage: run \"basedir\" \"containername\" \"blobname\"") + require(args.length == 3, "Invalid number of parameters. Usage: run ") val basedir = args(0) val containerName = args(1) -- 1.7.9.msysgit.0