Skip to content

Commit

Permalink
updated setting for ignoring linking error in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Shiti committed May 3, 2016
1 parent b9c9fe8 commit 48fd210
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ lazy val cassandra = sys.props.getOrElse("cassandra.version","3.0.0")//latest: 3
libraryDependencies ++= Seq(
"org.apache.kafka" % "connect-api" % "0.9.0.1" % "provided",
"com.datastax.cassandra" % "cassandra-driver-core" % cassandra,
//"com.typesafe.akka" %% "akka-stream" % "2.4.2" % "provided",
"joda-time" % "joda-time" % "2.9.3",
"org.joda" % "joda-convert" % "1.8.1",
"org.scalatest" %% "scalatest" % "2.2.6" % "test,it",
Expand Down Expand Up @@ -152,6 +151,7 @@ pomIncludeRepository := {
pomIncludeRepository := { _ => false }

lazy val root = (project in file("."))
.configs(IntegrationTest)
.enablePlugins(BuildInfoPlugin)
.enablePlugins(AutomateHeaderPlugin)
.enablePlugins(CassandraITPlugin)
Expand All @@ -161,7 +161,9 @@ lazy val root = (project in file("."))
buildInfoObject := "CassandraConnectorInfo",
cassandraVersion := cassandra,
cassandraCqlInit := "src/it/resources/setup.cql",
cassandraStartDeadline := 40
cassandraStartDeadline := 40,
scalacOptions in (Compile, doc) ++= Seq(
"-no-link-warnings" // Suppresses problems with Scaladoc @throws links
)
)
.settings(testSettings)
.configs(IntegrationTest)

0 comments on commit 48fd210

Please sign in to comment.