This is a sbt plugin that sbt-web plugins can use to get their configuration.
Ensure that project/build.properties
is configured for sbt minimum version of 1.9.7:
sbt.version=1.9.7
Add the following to project/plugins.sbt
:
addSbtPlugin("com.github.sbt" % "sbt-web-build-base" % "<latest-version>")
where <latest-version>
is the latest version available.
And finally, create a build.sbt
that declares the name
, description
and libraryDependencies
and enables the plugin. For example:
lazy val `sbt-project-name` = project in file(".")
enablePlugins(SbtWebBase)
description := "My project description"
libraryDependencies ++= Seq(
"org.webjars" % "my-web-jar" % "1.2.3"
)
Generally, no other settings should be needed, all required settings, such as cross building, organization
and scripted configuration are provided by sbt-web-build-base
.
A few utility methods are provided:
addSbtWeb
andaddSbtJsEngine
- these add dependencies on sbt-web and sbt-js-engine respectively.
- Tag the release:
git tag -s 1.2.3
- Push tag:
git push upstream 1.2.3
- GitHub action workflow does the rest: https://github.com/sbt/sbt-web-build-base/actions/workflows/publish.yml