Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
molekyla committed Feb 12, 2024
1 parent 8318f9e commit 34e67bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ lazy val `sbt-bom-example-github` = project
.settings(
name := "sbt-bom-example-github",
resolvers := Resolver.DefaultMavenRepository +: resolvers.value,
libraryDependencies ++= deps.key.value.dependencies
libraryDependencies ++= deps.key.value.bomDependencies
)

ThisBuild / scalacOptions ++= scalaCompilerOptions
Expand Down
1 change: 1 addition & 0 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ case class JacksonDependencies(platformBom: Bom) {
val dependencies: Seq[ModuleID] = Seq(
"com.fasterxml.jackson.core" % "jackson-databind" % platformBom
)
val bomDependencies: Seq[sbt.ModuleID] = platformBom.bomDependencies
}

trait DependenciesTrait {
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ resolvers += Resolver.url(
"Artifactory Realm",
url("https://repo.maven.apache.org/maven2"))(
Patterns("[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"))
addSbtPlugin("com.here.platform" % "sbt-bom" % "1.0.4")
addSbtPlugin("com.here.platform" % "sbt-bom" % "0.0.0-SNAPSHOT")

0 comments on commit 34e67bb

Please sign in to comment.