fixed publishing for newer kotlin

This commit is contained in:
Sergey Chernov 2025-09-25 18:08:48 +04:00
parent e7f44bb5a0
commit 5357b05f4a
2 changed files with 15 additions and 15 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@
/node_modules
.kotlin
/.gigaide/gigaide.properties
/java_pid40366.hprof

View File

@ -98,25 +98,24 @@ kotlin {
}
}
}
}
publishing {
val mavenToken by lazy {
File("${System.getProperty("user.home")}/.gitea_token").readText()
}
repositories {
maven {
credentials(HttpHeaderCredentials::class) {
name = "Authorization"
value = mavenToken
}
url = uri("https://gitea.sergeych.net/api/packages/SergeychWorks/maven")
authentication {
create("Authorization", HttpHeaderAuthentication::class)
}
publishing {
val mavenToken by lazy {
File("${System.getProperty("user.home")}/.gitea_token").readText()
}
repositories {
maven {
credentials(HttpHeaderCredentials::class) {
name = "Authorization"
value = mavenToken
}
url = uri("https://gitea.sergeych.net/api/packages/SergeychWorks/maven")
authentication {
create("Authorization", HttpHeaderAuthentication::class)
}
}
}
}
tasks.dokkaHtml.configure {