Switched from implementation to api in hope that Gradle then is able to resolve dependencies

This commit is contained in:
dankito 2020-11-17 01:34:07 +01:00
parent ebac99eeeb
commit 6d2e33f074
2 changed files with 3 additions and 3 deletions

View File

@ -33,9 +33,9 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation kotlin("stdlib-common")
api kotlin("stdlib-common")
implementation project(":common")
api project(":common")
}
}

View File

@ -14,7 +14,7 @@ compileTestKotlin {
dependencies {
implementation project(':BankFinder')
api project(':BankFinder')
implementation 'org.docx4j:docx4j-JAXB-ReferenceImpl:8.1.3'