Skip to content

Commit df2e956

Browse files
authored
Merge pull request #27 from ImLiar/finagle-update
Update finagle-http dep
2 parents 34aff8f + c82ad8c commit df2e956

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

Diff for: build.sbt

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1+
lazy val finagleVersion = "17.12.0"
2+
13
lazy val buildSettings = Seq(
24
organization := "com.github.finagle",
3-
version := "0.6.45",
4-
scalaVersion := "2.11.11",
5-
crossScalaVersions := Seq("2.11.11", "2.12.2")
5+
version := finagleVersion,
6+
scalaVersion := "2.12.4",
7+
crossScalaVersions := Seq("2.11.12", "2.12.4")
68
)
79

810
val baseSettings = Seq(
911
libraryDependencies ++= Seq(
10-
"com.twitter" %% "finagle-http" % "6.45.0",
12+
"com.twitter" %% "finagle-http" % finagleVersion,
1113
"org.scalacheck" %% "scalacheck" % "1.13.5" % Test,
12-
"org.scalatest" %% "scalatest" % "3.0.3" % Test
14+
"org.scalatest" %% "scalatest" % "3.0.4" % Test
1315
)
1416
)
1517

Diff for: project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.13.15
1+
sbt.version=1.0.4

Diff for: project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ resolvers ++= Seq(
44
"jgit-repo" at "http://download.eclipse.org/jgit/maven"
55
)
66

7-
addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.3")
7+
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")

0 commit comments

Comments
 (0)