Skip to content

Commit

Permalink
Updated dependencies, fixed syntax for skip-packages again
Browse files Browse the repository at this point in the history
  • Loading branch information
abrighton committed Dec 16, 2024
1 parent e1ddf63 commit 2bf7f34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4.2.2
- uses: coursier/[email protected]
with:
jvm: temurin:1.17
jvm: temurin:1.21
apps: sbt
- name: Test
run: sbt clean test scripted
2 changes: 1 addition & 1 deletion src/main/scala/org/tmt/sbt/docs/UnidocSitePlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ object UnidocSitePlugin extends AutoPlugin {
Seq("-Xdoclint:none", "--ignore-source-errors")
},
addMappingsToSiteDir(JavaUnidoc / packageDoc / mappings, JavaUnidoc / siteSubdirName),
ScalaUnidoc / unidoc / scalacOptions ++= Seq(s"-skip-by-id:$excludeScaladoc", "-Xfatal-warnings"),
ScalaUnidoc / unidoc / scalacOptions ++= Seq(s"-skip-packages", "excludeScaladoc", "-Xfatal-warnings"),
autoAPIMappings := true
)

Expand Down

0 comments on commit 2bf7f34

Please sign in to comment.