Skip to content

Commit

Permalink
updated libraries, small cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Herr Ritschwumm committed Jan 18, 2014
1 parent 8738240 commit d3023fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name := "scjson"

organization := "de.djini"

version := "0.44.0"
version := "0.45.0"

scalaVersion := "2.10.3"

libraryDependencies ++= Seq(
"de.djini" %% "scutil" % "0.39.0" % "compile",
"de.djini" %% "scutil" % "0.40.0" % "compile",
"org.scala-lang" % "scala-reflect" % scalaVersion.value % "compile",
"org.specs2" %% "specs2" % "2.3.4" % "test" exclude("org.scala-lang", "scala-library")
"org.specs2" %% "specs2" % "2.3.7" % "test" exclude("org.scala-lang", "scala-library")
)

scalacOptions ++= Seq(
Expand Down
4 changes: 2 additions & 2 deletions project/Boilerplate.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object Boilerplate {
//## tuples

def genTupleFile(outDir:File):File = {
val outFile = outDir / "TupleProtocolGenerated.scala"
val outFile = outDir / "TupleProtocolGenerated.scala"
IO write (outFile, genTupleTrait)
outFile
}
Expand Down Expand Up @@ -57,7 +57,7 @@ object Boilerplate {
//## case classes

def genCaseClassFile(outDir:File):File = {
val outFile = outDir / "CaseClassProtocolGenerated.scala"
val outFile = outDir / "CaseClassProtocolGenerated.scala"
IO write (outFile, genCaseClassTrait)
outFile
}
Expand Down

0 comments on commit d3023fa

Please sign in to comment.