From 7036f894656651b5f87ec7e95c0780dc06a282bb Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Wed, 1 Apr 2020 12:26:05 +0200 Subject: [PATCH] Fix compiling javadoc jar #11927 (#28858) This dependency wasn't needed and somehow broke setting the scalacSettings for the doc target... --- project/Doc.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Doc.scala b/project/Doc.scala index 633ff96b03..f4d0eb274f 100644 --- a/project/Doc.scala +++ b/project/Doc.scala @@ -24,7 +24,7 @@ object Scaladoc extends AutoPlugin { } override def trigger = allRequirements - override def requires = plugins.JvmPlugin && DeployRsync + override def requires = plugins.JvmPlugin val validateDiagrams = settingKey[Boolean]("Validate generated scaladoc diagrams")