From ba8af19f9e221dc023d41a3636653f394dafab56 Mon Sep 17 00:00:00 2001 From: maxirosson Date: Tue, 16 Feb 2021 00:01:28 -0300 Subject: [PATCH] Move release-gradle-plugin to root --- build.gradle | 2 ++ bye-bye-jetifier/build.gradle | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 120c410..78e2847 100644 --- a/build.gradle +++ b/build.gradle @@ -4,6 +4,7 @@ ext.GITHUB_REPOSITORY_NAME = "bye-bye-jetifier" apply plugin: "com.dipien.component.builder" apply plugin: 'com.jdroidtools.root' +apply plugin: "com.dipien.releasegradleplugin" buildscript { repositories { @@ -24,6 +25,7 @@ buildscript { dependencies { classpath(BuildLibs.DIPIEN_COMPONENT_BUILDER) classpath(BuildLibs.JDROID_GRADLE_ROOT_PLUGIN) + classpath(BuildLibs.RELEASE_GRADLE_PLUGIN) } } diff --git a/bye-bye-jetifier/build.gradle b/bye-bye-jetifier/build.gradle index faafca4..d773439 100644 --- a/bye-bye-jetifier/build.gradle +++ b/bye-bye-jetifier/build.gradle @@ -6,12 +6,10 @@ ext.GRADLE_PLUGIN_PORTAL_ID = "com.dipien.byebyejetifier" ext.GRADLE_PLUGIN_PORTAL_IMPLEMENTATION_CLASS = "com.dipien.byebyejetifier.ByeByeJetifierGradlePlugin" apply plugin: "com.jdroidtools.gradle.plugin" -apply plugin: "com.dipien.releasegradleplugin" buildscript { dependencies { classpath(BuildLibs.JDROID_GRADLE_PROJECT_PLUGIN) - classpath(BuildLibs.RELEASE_GRADLE_PLUGIN) } }