Skip to content

Commit

Permalink
Add needed With.GitHubPublishing to build.sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
reidspencer committed Jan 12, 2025
1 parent a29397b commit 134d3f1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ val Commands = config("commands")
lazy val commands_cp: CrossProject = CrossModule("commands", "riddl-commands")(JVM, Native)
.dependsOn(cpDep(utils_cp), cpDep(language_cp), cpDep(passes_cp), cpDep(diagrams_cp))
.configure(With.typical, With.headerLicense("Apache-2.0"))
.configure(With.GithubPublishing)
.settings(
scalacOptions ++= Seq("-explain", "--explain-types", "--explain-cyclic", "--no-warnings"),
description := "RIDDL Command Infrastructure and command definitions"
Expand Down Expand Up @@ -413,13 +414,14 @@ lazy val docsite = DocSite(
inclusions = Seq(utils, language, passes, diagrams, commands),
logoPath = Some("doc/src/main/hugo/static/images/RIDDL-Logo-128x128.png")
)
.dependsOn(utils, language, passes, diagrams, commands)
.configure(With.noMiMa)
.configure(With.GithubPublishing)
.settings(
name := "riddl-doc",
description := "Generation of the documentation web site",
libraryDependencies ++= Dep.testing
)
.configure(With.noMiMa)
.dependsOn(utils, language, passes, diagrams, commands)

lazy val plugin = Plugin("sbt-riddl")
.configure(With.GithubPublishing)
Expand Down

0 comments on commit 134d3f1

Please sign in to comment.