From dea43aad8ea628a4fb8def9d256daaf95a0e7703 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Thu, 14 May 2020 14:11:33 +0600 Subject: [PATCH] update subprojects implementation types --- TelegramBotAPI-all/build.gradle | 6 +++--- TelegramBotAPI-extensions-api/build.gradle | 2 +- TelegramBotAPI-extensions-utils/build.gradle | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/TelegramBotAPI-all/build.gradle b/TelegramBotAPI-all/build.gradle index fd13bbb88f..939d13307f 100644 --- a/TelegramBotAPI-all/build.gradle +++ b/TelegramBotAPI-all/build.gradle @@ -42,9 +42,9 @@ kotlin { api "${project.group}:TelegramBotAPI-extensions-api:$library_version" api "${project.group}:TelegramBotAPI-extensions-utils:$library_version" } else { - implementation project(":TelegramBotAPI") - implementation project(":TelegramBotAPI-extensions-api") - implementation project(":TelegramBotAPI-extensions-utils") + api project(":TelegramBotAPI") + api project(":TelegramBotAPI-extensions-api") + api project(":TelegramBotAPI-extensions-utils") } } } diff --git a/TelegramBotAPI-extensions-api/build.gradle b/TelegramBotAPI-extensions-api/build.gradle index 0cbe7c0136..217310d289 100644 --- a/TelegramBotAPI-extensions-api/build.gradle +++ b/TelegramBotAPI-extensions-api/build.gradle @@ -40,7 +40,7 @@ kotlin { if ((project.hasProperty('RELEASE_MODE') && project.property('RELEASE_MODE') == "true") || System.getenv('RELEASE_MODE') == "true") { api "${project.group}:TelegramBotAPI:$library_version" } else { - implementation project(":TelegramBotAPI") + api project(":TelegramBotAPI") } } } diff --git a/TelegramBotAPI-extensions-utils/build.gradle b/TelegramBotAPI-extensions-utils/build.gradle index 0cbe7c0136..217310d289 100644 --- a/TelegramBotAPI-extensions-utils/build.gradle +++ b/TelegramBotAPI-extensions-utils/build.gradle @@ -40,7 +40,7 @@ kotlin { if ((project.hasProperty('RELEASE_MODE') && project.property('RELEASE_MODE') == "true") || System.getenv('RELEASE_MODE') == "true") { api "${project.group}:TelegramBotAPI:$library_version" } else { - implementation project(":TelegramBotAPI") + api project(":TelegramBotAPI") } } }