Skip to content

Commit

Permalink
Move Maven pom name and description values to ProjectConfiguration file
Browse files Browse the repository at this point in the history
  • Loading branch information
Tweener committed Nov 13, 2024
1 parent c25e2ec commit e228bed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions buildSrc/src/main/kotlin/ProjectConfiguration.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ object ProjectConfiguration {
const val minSDK = 24

object Maven {
const val name = "CZAN"
const val description = "CZAN Atomic Design System for Kotlin Multiplatform and Compose Multiplatform"
const val group = "io.github.tweener"
const val packageUrl = "https://github.com/Tweener/czan"
const val gitUrl = "github.com:Tweener/czan.git"
Expand Down
4 changes: 2 additions & 2 deletions czan/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ publishing {
artifact(tasks["dokkaJavadocJar"])

pom {
name.set("CZAN")
description.set("CZAN Design System for Kotlin Multiplatform and Compose Multiplatform")
name.set(ProjectConfiguration.Czan.Maven.name)
description.set(ProjectConfiguration.Czan.Maven.description)
url.set(ProjectConfiguration.Czan.Maven.packageUrl)

licenses {
Expand Down

0 comments on commit e228bed

Please sign in to comment.