Skip to content

Commit

Permalink
Include kernel in ScalaDoc
Browse files Browse the repository at this point in the history
Currently the [ScalaDoc](http://typelevel.org/cats/api/#package)
doesn't include the kernel module, so types like Semigroup aren't
present.
  • Loading branch information
ceedubs committed Jun 14, 2016
1 parent b149835 commit 8c91537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ lazy val testingDependencies = Seq(
def docsSourcesAndProjects(sv: String): (Boolean, Seq[ProjectReference]) =
CrossVersion.partialVersion(sv) match {
case Some((2, 10)) => (false, Nil)
case _ => (true, Seq(coreJVM, freeJVM))
case _ => (true, Seq(kernelJVM, coreJVM, freeJVM))
}

lazy val javadocSettings = Seq(
Expand Down

0 comments on commit 8c91537

Please sign in to comment.