From 6d2e33f0749d4b0ef12ceaba98a9fce01febab04 Mon Sep 17 00:00:00 2001 From: dankito Date: Tue, 17 Nov 2020 01:34:07 +0100 Subject: [PATCH] Switched from implementation to api in hope that Gradle then is able to resolve dependencies --- tools/BankFinder/build.gradle | 4 ++-- tools/BankListCreator/build.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/BankFinder/build.gradle b/tools/BankFinder/build.gradle index 7db68265..1dcdba63 100644 --- a/tools/BankFinder/build.gradle +++ b/tools/BankFinder/build.gradle @@ -33,9 +33,9 @@ kotlin { sourceSets { commonMain { dependencies { - implementation kotlin("stdlib-common") + api kotlin("stdlib-common") - implementation project(":common") + api project(":common") } } diff --git a/tools/BankListCreator/build.gradle b/tools/BankListCreator/build.gradle index 47b2481e..5f0247c3 100644 --- a/tools/BankListCreator/build.gradle +++ b/tools/BankListCreator/build.gradle @@ -14,7 +14,7 @@ compileTestKotlin { dependencies { - implementation project(':BankFinder') + api project(':BankFinder') implementation 'org.docx4j:docx4j-JAXB-ReferenceImpl:8.1.3'