+maven publishing config

This commit is contained in:
Sergey Chernov 2022-12-17 01:36:21 +01:00
parent a1b08f2557
commit 0a23e02119

View File

@ -76,4 +76,15 @@ kotlin {
val jsMain by getting
val jsTest by getting
}
+ publishing {
repositories {
maven {
url = uri("https://maven.universablockchain.com/")
credentials {
username = System.getenv("maven_user")
password = System.getenv("maven_password")
}
}
}
}
}