Switched from implementation to api in hope that Gradle then is able to resolve dependencies
This commit is contained in:
parent
ebac99eeeb
commit
6d2e33f074
|
@ -33,9 +33,9 @@ kotlin {
|
||||||
sourceSets {
|
sourceSets {
|
||||||
commonMain {
|
commonMain {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation kotlin("stdlib-common")
|
api kotlin("stdlib-common")
|
||||||
|
|
||||||
implementation project(":common")
|
api project(":common")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ compileTestKotlin {
|
||||||
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':BankFinder')
|
api project(':BankFinder')
|
||||||
|
|
||||||
implementation 'org.docx4j:docx4j-JAXB-ReferenceImpl:8.1.3'
|
implementation 'org.docx4j:docx4j-JAXB-ReferenceImpl:8.1.3'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue