Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jakehschwartz committed Jul 30, 2017
1 parent d51c749 commit a3cc74a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 11 deletions.
10 changes: 4 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@ name := "finatra-swagger"

organization := "com.jakehschwartz"

scalaVersion := "2.12.2"

sbtVersion := "0.13.15"

scalaVersion := "2.12.3"

sbtVersion := "0.13.16"

libraryDependencies ++= Seq(
"com.twitter" %% "finatra-http" % "2.11.0",
"io.swagger" % "swagger-core" % "1.5.15",
"io.swagger" % "swagger-core" % "1.5.16",
"io.swagger" %% "swagger-scala-module" % "1.0.4",
"org.webjars" % "swagger-ui" % "3.0.14",
"org.webjars" % "swagger-ui" % "3.0.20",
"net.bytebuddy" % "byte-buddy" % "1.7.1",
"org.scalatest" %% "scalatest" % "3.0.3" % "test"
)
Expand Down
4 changes: 2 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ machine:

dependencies:
pre:
- wget -q https://dl.bintray.com/sbt/debian/sbt-0.13.15.deb
- sudo dpkg -i sbt-0.13.15.deb
- wget -q https://dl.bintray.com/sbt/debian/sbt-0.13.16.deb
- sudo dpkg -i sbt-0.13.16.deb
# Cache the resolution-cache and build streams to speed things up
cache_directories:
- "~/.sbt"
Expand Down
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.15
sbt.version = 0.13.16
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class DocsController @Inject()(swagger: Swagger,
get(s"$endpoint") { _: Request =>
response
.temporaryRedirect
.location(s"$endpoint/swagger-ui/3.0.14/index.html?url=/swagger.json")
.location(s"$endpoint/swagger-ui/3.0.20/index.html?url=/swagger.json")
}

private val defaultExpireTimeMillis: Long = 86400000L // 1 day
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version := "2.10.1-SNAPSHOT"
version := "2.11.0"

0 comments on commit a3cc74a

Please sign in to comment.