From a2f8bb551c0f6577569b661f73f54b09f3eeafd3 Mon Sep 17 00:00:00 2001 From: Victor Turansky Date: Thu, 30 Apr 2020 02:37:51 +0300 Subject: [PATCH] Plugin versions in 'plugins' block --- build.gradle | 2 -- settings.gradle | 7 +++++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 08a241a411..af33d38aa0 100644 --- a/build.gradle +++ b/build.gradle @@ -83,8 +83,6 @@ buildscript { // JMH plugins classpath "com.github.jengelman.gradle.plugins:shadow:5.1.0" - classpath "me.champeau.gradle:jmh-gradle-plugin:0.5.0-rc-2" - classpath "net.ltgt.gradle:gradle-apt-plugin:0.21" } } diff --git a/settings.gradle b/settings.gradle index 759628f134..2f0e661b4c 100644 --- a/settings.gradle +++ b/settings.gradle @@ -2,6 +2,13 @@ * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. */ +pluginManagement { + plugins { + id "net.ltgt.apt" version "0.21" + id "me.champeau.gradle.jmh" version "0.5.0-rc-2" + } +} + rootProject.name = 'kotlinx.coroutines' enableFeaturePreview('GRADLE_METADATA')