Skip to content

Commit 5cf8b66

Browse files
committed
Upgrading some of the dependent libraries
1 parent bf7ba92 commit 5cf8b66

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ mysql-async/target/*
2020
*.iml
2121
.project
2222
.vagrant/*
23+
vendor/*

Procfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
postgresql: postgres -D databases/postgresql
1+
postgresql: postgres -D vendor/postgresql
22
mysql: mysqld --log-warnings --console

project/Build.scala

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ object Configuration {
5252
val commonVersion = "0.2.19-SNAPSHOT"
5353
val projectScalaVersion = "2.11.7"
5454

55-
val specs2Dependency = "org.specs2" %% "specs2" % "2.3.11" % "test"
56-
val logbackDependency = "ch.qos.logback" % "logback-classic" % "1.1.3" % "test"
55+
val specs2Dependency = "org.specs2" %% "specs2" % "2.5" % "test"
56+
val logbackDependency = "ch.qos.logback" % "logback-classic" % "1.1.6" % "test"
5757

5858
val commonDependencies = Seq(
59-
"org.slf4j" % "slf4j-api" % "1.7.12",
60-
"joda-time" % "joda-time" % "2.3",
61-
"org.joda" % "joda-convert" % "1.5",
62-
"io.netty" % "netty-all" % "4.0.29.Final",
59+
"org.slf4j" % "slf4j-api" % "1.7.18",
60+
"joda-time" % "joda-time" % "2.9.2",
61+
"org.joda" % "joda-convert" % "1.8.1",
62+
"io.netty" % "netty-all" % "4.0.34.Final",
6363
"org.javassist" % "javassist" % "3.20.0-GA",
6464
specs2Dependency,
6565
logbackDependency
@@ -78,7 +78,7 @@ object Configuration {
7878
:+ "-feature"
7979
,
8080
scalacOptions in doc := Seq("-doc-external-doc:scala=http://www.scala-lang.org/archives/downloads/distrib/files/nightly/docs/library/"),
81-
crossScalaVersions := Seq(projectScalaVersion, "2.10.4"),
81+
crossScalaVersions := Seq(projectScalaVersion, "2.10.6"),
8282
javacOptions := Seq("-source", "1.6", "-target", "1.6", "-encoding", "UTF8"),
8383
organization := "com.github.mauricio",
8484
version := commonVersion,

0 commit comments

Comments
 (0)