Made banking-client-model publishable
This commit is contained in:
parent
0baa3b670e
commit
21d13622d3
|
@ -0,0 +1,3 @@
|
|||
[submodule "gradle/scripts"]
|
||||
path = gradle/scripts
|
||||
url = git@github.com:dankito/GradleScripts.git
|
|
@ -98,4 +98,10 @@ kotlin {
|
|||
nativeMain { }
|
||||
nativeTest { }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
ext["customArtifactId"] = "banking-client-model"
|
||||
|
||||
apply(from = "../gradle/scripts/publish-codinux.gradle.kts")
|
|
@ -17,4 +17,22 @@ allprojects {
|
|||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
|
||||
ext["sourceCodeRepositoryBaseUrl"] = "github.com/codinux/BankingClient"
|
||||
|
||||
ext["projectDescription"] = "Model and base definitions for Banking Client, a common abstraction for different implements of banking libraries"
|
||||
}
|
||||
|
||||
|
||||
tasks.register("publishAllToMavenLocal") {
|
||||
dependsOn(
|
||||
":BankingClientModel:publishToMavenLocal"
|
||||
)
|
||||
}
|
||||
|
||||
tasks.register("publishAll") {
|
||||
dependsOn(
|
||||
":BankingClientModel:publish"
|
||||
)
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
Subproject commit bdf8b14738c06016a48e1fc9781ad4d999e1219f
|
Loading…
Reference in New Issue