From ac00d8a215d054f3a2dcaaaab09d999fa053416c Mon Sep 17 00:00:00 2001 From: sdeleuze Date: Mon, 11 Dec 2017 12:07:17 +0100 Subject: [PATCH] Use JCenter first to resolve plugins This is a workaround for Kotlin/dokka#146. --- settings.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/settings.gradle b/settings.gradle index 40fd156314..ed1b9e9abd 100644 --- a/settings.gradle +++ b/settings.gradle @@ -9,6 +9,14 @@ pluginManagement { } */ +// Workaround for https://github.com/Kotlin/dokka/issues/146 +pluginManagement { + repositories { + jcenter() + gradlePluginPortal() + } +} + include "spring-aop" include "spring-aspects" include "spring-beans"