Skip to content

Commit

Permalink
feat: updated publishing settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ngyewch committed Jul 17, 2024
1 parent a8bb932 commit eb7dd6c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
signing
}

group = "com.github.ngyewch"
group = "io.github.ngyewch"
version = "0.1.1"

configurations {
Expand Down Expand Up @@ -112,6 +112,14 @@ publishing {
name = "build"
url = uri(layout.buildDirectory.dir("repo"))
}
maven {
name = "central"
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
credentials {
username = project.properties["ossrh.username"] as String?
password = project.properties["ossrh.password"] as String?
}
}
}
}

Expand Down

0 comments on commit eb7dd6c

Please sign in to comment.