Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit 4f15d74

Browse files
authored
Merge pull request #623 from jczuchnowski/fix-publishing-scaladoc-error
Fix publishing scaladoc error
2 parents 523cebe + e80f591 commit 4f15d74

File tree

3 files changed

+7197
-1
lines changed

3 files changed

+7197
-1
lines changed

build.sbt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,13 @@ lazy val jdbc = project
145145
"com.dimafeng" %% "testcontainers-scala-postgresql" % testcontainersScalaVersion % Test
146146
)
147147
)
148+
.settings(
149+
Seq(
150+
Compile / doc / scalacOptions ++= Seq(
151+
"-no-link-warnings" // Suppresses problems with Scaladoc links
152+
)
153+
)
154+
)
148155
.settings(testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework"))
149156
.dependsOn(core.jvm)
150157

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.6
1+
sbt.version=1.6.2

0 commit comments

Comments
 (0)