Renamed module common to multiplatform-utils
This commit is contained in:
parent
f637897dc3
commit
d56833e1ef
15
build.gradle
15
build.gradle
|
@ -40,12 +40,6 @@ buildscript {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
def commonScriptsFile = new File(new File(project.gradle.gradleUserHomeDir, "scripts"), "commonScripts.gradle")
|
|
||||||
if (commonScriptsFile.exists()) {
|
|
||||||
apply from: commonScriptsFile
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
|
@ -61,7 +55,14 @@ allprojects {
|
||||||
|
|
||||||
task jarAll {
|
task jarAll {
|
||||||
dependsOn = [
|
dependsOn = [
|
||||||
"common:jvmJar",
|
"multiplatform-utils:jvmJar",
|
||||||
"fints4k:jvmJar",
|
"fints4k:jvmJar",
|
||||||
]
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
task publishAllToMavenLocal {
|
||||||
|
dependsOn = [
|
||||||
|
"multiplatform-utils:publishToMavenLocal",
|
||||||
|
"fints4k:publishToMavenLocal",
|
||||||
|
]
|
||||||
}
|
}
|
|
@ -43,7 +43,7 @@ kotlin {
|
||||||
sourceSets {
|
sourceSets {
|
||||||
commonMain {
|
commonMain {
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(":common")
|
api project(":multiplatform-utils")
|
||||||
|
|
||||||
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion"
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion"
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
ext.artifactName = "multiplatform-utils"
|
group = "net.codinux.utils"
|
||||||
|
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
|
@ -5,9 +5,9 @@ pluginManagement {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
rootProject.name = 'fints4kProject'
|
rootProject.name = "fints4kProject"
|
||||||
|
|
||||||
|
|
||||||
include ':fints4k'
|
include ":fints4k"
|
||||||
|
|
||||||
include ':common'
|
include ":multiplatform-utils"
|
||||||
|
|
Loading…
Reference in New Issue