You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this section there is a line: addSbtPlugin("com.here.platform" % "sbt-bom" % "1.0.7")
If we use plugin version 1.0.7 then we cannot use method dependencies mentioned in this section in line: lazy val jacksonDependencies = Bom.dependencies("com.fasterxml.jackson" % "jackson-bom" % "2.14.2")
due to the fact that it doesn't exist in this version. To fix it we need to upgrade plugin to version 1.0.14, so we should do the following change: addSbtPlugin("com.here.platform" % "sbt-bom" % "1.0.7") into addSbtPlugin("com.here.platform" % "sbt-bom" % "1.0.14")
The text was updated successfully, but these errors were encountered:
In this section there is a line:
addSbtPlugin("com.here.platform" % "sbt-bom" % "1.0.7")
If we use plugin version 1.0.7 then we cannot use method
dependencies
mentioned in this section in line:lazy val jacksonDependencies = Bom.dependencies("com.fasterxml.jackson" % "jackson-bom" % "2.14.2")
due to the fact that it doesn't exist in this version. To fix it we need to upgrade plugin to version 1.0.14, so we should do the following change:
addSbtPlugin("com.here.platform" % "sbt-bom" % "1.0.7")
intoaddSbtPlugin("com.here.platform" % "sbt-bom" % "1.0.14")
The text was updated successfully, but these errors were encountered: