Skip to content

Commit

Permalink
Upgraded zookeeper and scala
Browse files Browse the repository at this point in the history
  • Loading branch information
mbknor committed Apr 30, 2014
1 parent 0a45399 commit 8d23081
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions ddsl-core/project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ object DdslCoreBuild extends Build {

val runtime = Seq(
"org.scala-lang" % "scala-library" % BuildSettings.buildScalaVersion,
"org.apache.zookeeper" % "zookeeper" % "3.4.3" intransitive(),
"org.apache.zookeeper" % "zookeeper" % "3.4.6" intransitive(),
"org.slf4j" % "slf4j-api" % "1.7.1",
"ch.qos.logback" % "logback-classic" % "1.0.7" % "test",
"org.scalatest" %% "scalatest" % "1.9" % "test",
Expand All @@ -44,9 +44,9 @@ object DdslCoreBuild extends Build {
object BuildSettings {

val buildOrganization = "com.kjetland"
val buildVersion = "0.3.3"
val buildScalaVersion = "2.10.0"
val buildSbtVersion = "0.12"
val buildVersion = "0.3.5-SNAPSHOT"
val buildScalaVersion = "2.10.3"
val buildSbtVersion = "0.13.0"

val buildSettings = Defaults.defaultSettings ++ Seq (
organization := buildOrganization,
Expand Down
5 changes: 3 additions & 2 deletions examples/ddsl-scala-examples/project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ object DdslExampleBuild extends Build {

val runtime = Seq(
"com.kjetland" %% "ddsl" % BuildSettings.buildVersion,
"ch.qos.logback" % "logback-classic" % "1.0.7"
"ch.qos.logback" % "logback-classic" % "1.0.13",
"org.scala-lang" % "scala-library" % "2.10.0"
)
}

Expand All @@ -35,7 +36,7 @@ object DdslExampleBuild extends Build {
val buildOrganization = "com.kjetland"
val buildVersion = "0.3.3"
val buildScalaVersion = "2.10.0"
val buildSbtVersion = "0.12"
val buildSbtVersion = "0.13.0"

val buildSettings = Defaults.defaultSettings ++ Seq (
organization := buildOrganization,
Expand Down

0 comments on commit 8d23081

Please sign in to comment.