diff --git a/build.gradle b/build.gradle index a06fc9c0..341b53bf 100644 --- a/build.gradle +++ b/build.gradle @@ -16,6 +16,7 @@ ext { buildscript { repositories { mavenCentral() + maven { url = "https://maven.dankito.net/api/packages/codinux/maven" } google() } diff --git a/fints4k/build.gradle b/fints4k/build.gradle index 5bf9f201..7e167857 100644 --- a/fints4k/build.gradle +++ b/fints4k/build.gradle @@ -135,4 +135,19 @@ kotlin { } } +} + + +publishing { + repositories { + maven { + name = "codinux" + url = uri("https://maven.dankito.net/api/packages/codinux/maven") + + credentials(PasswordCredentials) { + username = project.property("codinuxRegistryWriterUsername") + password = project.property("codinuxRegistryWriterPassword") + } + } + } } \ No newline at end of file