From db5560e1ac5f6c195fa39588db631e732ea40522 Mon Sep 17 00:00:00 2001 From: Alex Bertram Date: Mon, 5 Mar 2018 22:27:48 +0100 Subject: [PATCH] Added workaround for buggy http library in SBT 1.x --- source/library/project-setup.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/library/project-setup.rst b/source/library/project-setup.rst index ba777ac..d93478b 100644 --- a/source/library/project-setup.rst +++ b/source/library/project-setup.rst @@ -75,6 +75,11 @@ Renjin's Script Engine: resolvers += "BeDataDriven" at "https://nexus.bedatadriven.com/content/groups/public" + // Workaround for buggy http handler in SBT 1.x + // https://github.com/sbt/sbt/issues/3570 + // Do not include for SBT 0.13.x or earlier + updateOptions := updateOptions.value.withGigahorse(false) + lazy val root = (project in file(".")). settings( name := "renjin-test",