Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TF-146 Http Core Upgrade #7

Merged
merged 1 commit into from
Apr 11, 2019
Merged
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: 2 additions & 0 deletions app/config/microserviceWiring.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

package config

import akka.actor.ActorSystem
import com.typesafe.config.Config
import play.api.{Configuration, Play}
import play.api.Mode.Mode
Expand All @@ -36,6 +37,7 @@ trait Hooks extends HttpHooks with HttpAuditing {
trait WSHttp extends HttpGet with WSGet with HttpPut with WSPut with HttpPost with WSPost with HttpDelete with WSDelete with Hooks with AppName {
override protected def configuration: Option[Config] = Some(Play.current.configuration.underlying)
override protected def appNameConfiguration: Configuration = Play.current.configuration
override protected def actorSystem: ActorSystem = Play.current.actorSystem
}

object WSHttp extends WSHttp
Expand Down
4 changes: 2 additions & 2 deletions project/MicroServiceBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ private object AppDependencies {
import play.sbt.PlayImport._
import play.core.PlayVersion

private val hmrcTestVersion = "3.3.0"
private val hmrcTestVersion = "3.5.0-play-25"
private val scalaTestVersion = "2.2.6"
private val pegdownVersion = "1.6.0"
private val jacksonVersion = "2.8.9"

val compile = Seq(
ws,
"uk.gov.hmrc" %% "microservice-bootstrap" % "9.1.0",
"uk.gov.hmrc" %% "microservice-bootstrap" % "10.4.0",
"uk.gov.hmrc" %% "play-ui" % "7.27.0-play-25",
"uk.gov.hmrc" %% "domain" % "5.0.0",
"uk.gov.hmrc" %% "logging" % "0.6.0" withSources(),
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.18