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

No "dependencies" method in sbt plugin version 1.0.7 #23

Closed
marcinmicek opened this issue Sep 3, 2024 · 1 comment · Fixed by #24
Closed

No "dependencies" method in sbt plugin version 1.0.7 #23

marcinmicek opened this issue Sep 3, 2024 · 1 comment · Fixed by #24

Comments

@marcinmicek
Copy link

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")

@molekyla
Copy link
Collaborator

molekyla commented Sep 4, 2024

@marcinmicek Good catch. Indeed readme file is out of sync with the latest version. You should use the latest version: 1.0.14

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants