Skip to content

Commit

Permalink
Merge pull request #83 from hmrc/API-7865
Browse files Browse the repository at this point in the history
API-7865: bump dependencies
  • Loading branch information
mi-akram authored Oct 7, 2024
2 parents d31bce0 + 55d762a commit cade442
Showing 1 changed file with 17 additions and 19 deletions.
36 changes: 17 additions & 19 deletions project/AppDependencies.scala
Original file line number Diff line number Diff line change
@@ -1,32 +1,30 @@
import play.sbt.PlayImport.caffeine
import sbt._
import sbt.*

object AppDependencies {
val bootstrapPlayVersion = "9.0.0"
val mongoVersion = "1.7.0"

def apply(): Seq[ModuleID] = compile ++ test

val compile = Seq(
"uk.gov.hmrc" %% "bootstrap-backend-play-30" % bootstrapPlayVersion,
"uk.gov.hmrc.mongo" %% "hmrc-mongo-play-30" % mongoVersion,
"org.apache.pekko" %% "pekko-connectors-mongodb" % "1.0.2",
"org.apache.axis2" % "axis2-kernel" % "1.8.2",
"org.apache.wss4j" % "wss4j-ws-security-dom" % "2.4.3",
"uk.gov.hmrc" %% "bootstrap-backend-play-30" % bootstrapPlayVersion,
"uk.gov.hmrc.mongo" %% "hmrc-mongo-play-30" % mongoVersion,
"org.apache.pekko" %% "pekko-connectors-mongodb" % "1.0.2",
"org.apache.axis2" % "axis2-kernel" % "1.8.2",
"org.apache.wss4j" % "wss4j-ws-security-dom" % "3.0.3",
"com.sun.activation" % "javax.activation" % "1.2.0",
caffeine
)

val test = Seq(
"uk.gov.hmrc" %% "bootstrap-test-play-30" % bootstrapPlayVersion,
"org.mockito" %% "mockito-scala-scalatest" % "1.17.30",
"org.xmlunit" % "xmlunit-core" % "2.9.0",
"uk.gov.hmrc.mongo" %% "hmrc-mongo-test-play-30" % mongoVersion
"uk.gov.hmrc" %% "bootstrap-test-play-30" % bootstrapPlayVersion,
"org.mockito" %% "mockito-scala-scalatest" % "1.17.30",
"org.xmlunit" % "xmlunit-core" % "2.9.0",
"uk.gov.hmrc.mongo" %% "hmrc-mongo-test-play-30" % mongoVersion
).map(_ % "test")

val axiomVersion = "1.4.0"
val axiomVersion = "1.4.0"
val axiomOverrides = Seq(
"org.apache.ws.commons.axiom" % "axiom" % axiomVersion,
"org.apache.ws.commons.axiom" % "axiom-api" % axiomVersion,
"org.apache.ws.commons.axiom" % "axiom-impl" % axiomVersion,
"org.apache.ws.commons.axiom" % "axiom" % axiomVersion,
"org.apache.ws.commons.axiom" % "axiom-api" % axiomVersion,
"org.apache.ws.commons.axiom" % "axiom-impl" % axiomVersion
)

def apply(): Seq[ModuleID] = compile ++ test
}

0 comments on commit cade442

Please sign in to comment.