Configured publishing fints4k-banking-client to codinux Maven repo
This commit is contained in:
parent
7437ac0cf5
commit
02eb0f5804
|
@ -4,6 +4,8 @@ import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform")
|
kotlin("multiplatform")
|
||||||
|
|
||||||
|
id("maven-publish")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -117,6 +119,21 @@ kotlin {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ext["customArtifactId"] = "fints4k-banking-client"
|
//ext["customArtifactId"] = "fints4k-banking-client"
|
||||||
|
//
|
||||||
|
//apply(from = "../gradle/scripts/publish-codinux.gradle.kts")
|
||||||
|
|
||||||
apply(from = "../gradle/scripts/publish-codinux.gradle.kts")
|
|
||||||
|
publishing {
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
name = "codinux"
|
||||||
|
url = uri("https://maven.dankito.net/api/packages/codinux/maven")
|
||||||
|
|
||||||
|
credentials(PasswordCredentials::class.java) {
|
||||||
|
username = project.property("codinuxRegistryWriterUsername") as String
|
||||||
|
password = project.property("codinuxRegistryWriterPassword") as String
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -16,6 +16,9 @@ allprojects {
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
setUrl("https://maven.dankito.net/api/packages/codinux/maven")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -28,3 +28,6 @@ include("BankingClientModel")
|
||||||
include("BankingClient")
|
include("BankingClient")
|
||||||
|
|
||||||
include("FinTs4jBankingClient")
|
include("FinTs4jBankingClient")
|
||||||
|
project(":FinTs4jBankingClient").apply {
|
||||||
|
name = "fints4k-banking-client"
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue