Skip to content

Commit

Permalink
Merge pull request #90 from eavilaes/generate-scaladocs
Browse files Browse the repository at this point in the history
Headers and footers for scaladoc generation, including version in HTML
  • Loading branch information
eavilaes authored Mar 29, 2022
2 parents 1db8c30 + 02f33ee commit f146d92
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ lazy val qbeastSpark = (project in file("."))
publish / skip := true)
.settings(noWarningInConsole)

qbeastSpark / Compile / doc / scalacOptions ++= Seq(
"-doc-title",
"qbeast-spark",
"-doc-version",
qbeast_spark_version,
"-doc-footer",
"Copyright 2022 Qbeast - Docs for version " + qbeast_spark_version + " of qbeast-spark")

lazy val qbeastSparkNodep = (project in file("nodep"))
.settings(name := "qbeast-spark-nodep", Compile / packageBin := (qbeastSpark / assembly).value)

Expand All @@ -33,7 +41,8 @@ lazy val qbeastSparkMaven = (project in file("maven"))
.settings(name := "qbeast-spark", Compile / packageBin := (qbeastSpark / assembly).value)

// Common metadata
ThisBuild / version := "0.2.0"
val qbeast_spark_version = "0.2.0"
ThisBuild / version := qbeast_spark_version
ThisBuild / organization := "io.qbeast"
ThisBuild / organizationName := "Qbeast Analytics, S.L."
ThisBuild / organizationHomepage := Some(url("https://qbeast.io/"))
Expand Down

0 comments on commit f146d92

Please sign in to comment.