Skip to content

Commit

Permalink
libraryDependenciesにScala IOを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuchitama committed Sep 21, 2014
1 parent d2a2789 commit 5858ce2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ version := "1.0"
scalaVersion := "2.11.1"

// Change this to another test framework if you prefer
libraryDependencies += "org.scalatest" %% "scalatest" % "2.1.6" % "test"
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "2.1.6" % "test",
"com.github.scala-incubator.io" %% "scala-io-core" % "0.4.3-1",
"com.github.scala-incubator.io" %% "scala-io-file" % "0.4.3-1"
)

// Uncomment to use Akka
//libraryDependencies += "com.typesafe.akka" % "akka-actor_2.11" % "2.3.3"
Expand Down

0 comments on commit 5858ce2

Please sign in to comment.