Skip to content

Commit

Permalink
add: cd
Browse files Browse the repository at this point in the history
  • Loading branch information
kigawa01 committed Dec 30, 2024
1 parent d789088 commit f84797c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 2 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@ plugins {
alias(libs.plugins.vanniktech.maven.publish)
alias(libs.plugins.dokka)
}
val gpId = "net.kigawa"
val afId = "hakate"
val ver = "1.0.0"
val gpId = properties.get("project.groupeId") as String
val ver = properties.get("project.version") as String
group = gpId
version = ver

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ plugins {
}

allprojects {
group = "io.github.atsushieno.multiplatform-library-template-nexus-publisher"
version = "0.0.2"
group = properties.get("project.groupeId") as String
version = properties.get("project.version") as String
}

nexusPublishing {
Expand Down
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
kotlin.code.style=official
project.groupeId="net.kigawa"
project.artifactId="hakate"
project.version="1.0.0"

0 comments on commit f84797c

Please sign in to comment.