Skip to content

Commit

Permalink
Set scriptedSbt lowest support sbt version
Browse files Browse the repository at this point in the history
  • Loading branch information
mdedetrich committed Oct 24, 2024
1 parent c523478 commit f4bdae7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Add the plugin dependency to the file `project/plugins.sbt` using `addSbtPlugin`

`addSbtPlugin("io.github.siculo" %% "sbt-bom" % "0.3.0")`

Note that the minimum supported version of sbt is 1.7.0 (this is what the [scripted](https://www.scala-sbt.org/1.x/docs/Testing-sbt-plugins.html#scripted+test+framework) tests target)

### BOM creation

To create the bom for the default configuration use `makeBom` command:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ lazy val root = (project in file("."))
)
},
scriptedBufferLog := false,
scriptedSbt := "1.10.2",
scriptedSbt := "1.7.0",
dependencyOverrides += "org.typelevel" %% "jawn-parser" % "0.14.1"
)

Expand Down

0 comments on commit f4bdae7

Please sign in to comment.