We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66403ef commit cc6aa32Copy full SHA for cc6aa32
src/main/scala/dev/atedeg/UbiquitousScaladocPlugin.scala
@@ -10,8 +10,11 @@ object UbiquitousScaladocPlugin extends AutoPlugin {
10
11
import autoImport.*
12
13
- override def projectSettings: Seq[Setting[_]] = Seq(
14
- ubiquitousScaladoc := UbiquitousScaladoc(usSourceHtmlDir.value, usTargetMarkdownDir.value)
+ override lazy val buildSettings: Seq[Setting[_]] = Seq(
+ ubiquitousScaladoc := UbiquitousScaladoc(
15
+ (ubiquitousScaladoc / usSourceHtmlDir).value,
16
+ (ubiquitousScaladoc / usTargetMarkdownDir).value,
17
+ ),
18
)
19
-}
20
+}
0 commit comments