Skip to content
This repository was archived by the owner on Nov 27, 2018. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.2
sbt.version=0.13.8
12 changes: 6 additions & 6 deletions project/build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ import Keys._
object JacksBuild extends Build {
val buildSettings = Project.defaultSettings ++ Seq(
name := "jacks",
version := "2.3.3",
version := "2.3.4",
organization := "com.lambdaworks",
scalaVersion := "2.11.0",
scalaVersion := "2.11.6",

crossScalaVersions := Seq("2.11.0", "2.10.4"),
crossScalaVersions := Seq("2.11.6", "2.10.5"),

libraryDependencies <+= scalaVersion("org.scala-lang" % "scalap" % _),
libraryDependencies ++= Seq(
"com.fasterxml.jackson.core" % "jackson-databind" % "2.3.3",
"org.scalatest" %% "scalatest" % "2.1.3" % "test",
"org.scalacheck" %% "scalacheck" % "1.11.3" % "test"
"com.fasterxml.jackson.core" % "jackson-databind" % "2.4.4",
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
"org.scalacheck" %% "scalacheck" % "1.12.2" % "test"
),

scalacOptions ++= Seq( "-language:_", "-unchecked", "-optimize"),
Expand Down