Skip to content

Commit 48fd210

Browse files
committed
updated setting for ignoring linking error in documentation
1 parent b9c9fe8 commit 48fd210

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

build.sbt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ lazy val cassandra = sys.props.getOrElse("cassandra.version","3.0.0")//latest: 3
2929
libraryDependencies ++= Seq(
3030
"org.apache.kafka" % "connect-api" % "0.9.0.1" % "provided",
3131
"com.datastax.cassandra" % "cassandra-driver-core" % cassandra,
32-
//"com.typesafe.akka" %% "akka-stream" % "2.4.2" % "provided",
3332
"joda-time" % "joda-time" % "2.9.3",
3433
"org.joda" % "joda-convert" % "1.8.1",
3534
"org.scalatest" %% "scalatest" % "2.2.6" % "test,it",
@@ -152,6 +151,7 @@ pomIncludeRepository := {
152151
pomIncludeRepository := { _ => false }
153152

154153
lazy val root = (project in file("."))
154+
.configs(IntegrationTest)
155155
.enablePlugins(BuildInfoPlugin)
156156
.enablePlugins(AutomateHeaderPlugin)
157157
.enablePlugins(CassandraITPlugin)
@@ -161,7 +161,9 @@ lazy val root = (project in file("."))
161161
buildInfoObject := "CassandraConnectorInfo",
162162
cassandraVersion := cassandra,
163163
cassandraCqlInit := "src/it/resources/setup.cql",
164-
cassandraStartDeadline := 40
164+
cassandraStartDeadline := 40,
165+
scalacOptions in (Compile, doc) ++= Seq(
166+
"-no-link-warnings" // Suppresses problems with Scaladoc @throws links
167+
)
165168
)
166169
.settings(testSettings)
167-
.configs(IntegrationTest)

0 commit comments

Comments
 (0)