Skip to content

Commit

Permalink
publishing will deploy to remote repository
Browse files Browse the repository at this point in the history
  • Loading branch information
g2213swo committed Apr 17, 2024
1 parent 3191249 commit 60102f1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion buildSrc/src/main/kotlin/helper-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,14 @@ kotlin {

publishing {
repositories {
maven(uri("${System.getProperty("user.home")}/MewcraftRepository"))
maven {
name = "mewcraftRepository"
url = uri("https://repo.mewcraft.cc/releases/")
credentials(PasswordCredentials::class)
authentication {
create<BasicAuthentication>("basic")
}
}
}

publications {
Expand Down

0 comments on commit 60102f1

Please sign in to comment.