From 8c91537c632805b04ad02af3440c238335f8f804 Mon Sep 17 00:00:00 2001 From: Cody Allen Date: Tue, 14 Jun 2016 09:04:09 -0400 Subject: [PATCH] Include kernel in ScalaDoc Currently the [ScalaDoc](http://typelevel.org/cats/api/#package) doesn't include the kernel module, so types like Semigroup aren't present. --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 4443e59913..eeb1c8941d 100644 --- a/build.sbt +++ b/build.sbt @@ -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(