Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scala 3 Build ScalaDoc #2163

Merged
merged 1 commit into from Sep 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 0 additions & 7 deletions project/DottyBuild.scala
Expand Up @@ -66,7 +66,6 @@ trait DottyBuild { this: BuildCommons =>
}.taskValue,
//scalacticDocSourcesSetting,
//docTaskSetting,
publishArtifact in (Compile, packageDoc) := false, // Temporary disable publishing of doc, can't get it to build.
mimaPreviousArtifacts := Set(organization.value %% name.value % previousReleaseVersion),
mimaCurrentClassfiles := (classDirectory in Compile).value.getParentFile / (name.value + "_" + scalaBinaryVersion.value + "-" + releaseVersion + ".jar")
).settings(osgiSettings: _*).settings(
Expand Down Expand Up @@ -123,7 +122,6 @@ trait DottyBuild { this: BuildCommons =>
}.taskValue,
//scalacticDocSourcesSetting,
//docTaskSetting,
publishArtifact in (Compile, packageDoc) := false, // Temporary disable publishing of doc, can't get it to build.
mimaPreviousArtifacts := Set(organization.value %% name.value % previousReleaseVersion),
mimaCurrentClassfiles := (classDirectory in Compile).value.getParentFile / (name.value + "_" + scalaBinaryVersion.value + "-" + releaseVersion + ".jar")
).settings(osgiSettings: _*).settings(
Expand Down Expand Up @@ -180,7 +178,6 @@ trait DottyBuild { this: BuildCommons =>
}.taskValue,
//scalacticDocSourcesSetting,
//docTaskSetting,
publishArtifact in (Compile, packageDoc) := false, // Temporary disable publishing of doc, can't get it to build.
mimaPreviousArtifacts := Set(organization.value %% name.value % previousReleaseVersion),
mimaCurrentClassfiles := (classDirectory in Compile).value.getParentFile / (name.value + "_" + scalaBinaryVersion.value + "-" + releaseVersion + ".jar")
).settings(osgiSettings: _*).settings(
Expand Down Expand Up @@ -241,7 +238,6 @@ trait DottyBuild { this: BuildCommons =>
//GenSafeStyles.genMain((sourceManaged in Compile).value / "org" / "scalatest", version.value, scalaVersion.value)
}.taskValue,
//scalatestJSDocTaskSetting,
publishArtifact in (Compile, packageDoc) := false, // Temporary disable publishing of doc, can't get it to build.
mimaPreviousArtifacts := Set(organization.value %% name.value % previousReleaseVersion),
mimaCurrentClassfiles := (classDirectory in Compile).value.getParentFile / (name.value + "_" + scalaBinaryVersion.value + "-" + releaseVersion + ".jar"),
mimaBinaryIssueFilters ++= {
Expand Down Expand Up @@ -317,7 +313,6 @@ trait DottyBuild { this: BuildCommons =>
//GenSafeStyles.genMain((sourceManaged in Compile).value / "org" / "scalatest", version.value, scalaVersion.value)
}.taskValue,
//scalatestJSDocTaskSetting,
publishArtifact in (Compile, packageDoc) := false, // Temporary disable publishing of doc, can't get it to build.
mimaPreviousArtifacts := Set(organization.value %% name.value % previousReleaseVersion),
mimaCurrentClassfiles := (classDirectory in Compile).value.getParentFile / (name.value + "_" + scalaBinaryVersion.value + "-" + releaseVersion + ".jar"),
mimaBinaryIssueFilters ++= {
Expand Down Expand Up @@ -394,7 +389,6 @@ trait DottyBuild { this: BuildCommons =>
//GenSafeStyles.genMain((sourceManaged in Compile).value / "org" / "scalatest", version.value, scalaVersion.value)
}.taskValue,
//scalatestJSDocTaskSetting,
publishArtifact in (Compile, packageDoc) := false, // Temporary disable publishing of doc, can't get it to build.
mimaPreviousArtifacts := Set(organization.value %% name.value % previousReleaseVersion),
mimaCurrentClassfiles := (classDirectory in Compile).value.getParentFile / (name.value + "_" + scalaBinaryVersion.value + "-" + releaseVersion + ".jar"),
mimaBinaryIssueFilters ++= {
Expand Down Expand Up @@ -435,7 +429,6 @@ trait DottyBuild { this: BuildCommons =>
organization := "org.scalatest",
moduleName := name,
packageManagedSources,
publishArtifact in (Compile, packageDoc) := false, // Temporary disable publishing of doc, can't get it to build.
osgiSettings,
OsgiKeys.additionalHeaders := Map(
"Bundle-Name" -> title,
Expand Down