Skip to content

Commit

Permalink
feat: Set publishing to jitpack
Browse files Browse the repository at this point in the history
  • Loading branch information
SeokgyuYun committed Mar 24, 2024
1 parent 5a3c4d9 commit 3b20f76
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions dodam-design-system/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
id("maven-publish")
}

afterEvaluate {
publishing {
publications {
register("release", MavenPublication::class) {
from(components["release"])
groupId = "com.b1nd.dodam.dds"
artifactId = "dodam-design-system"
version = "0.1.0"
}
}
}
}

android {
Expand Down

0 comments on commit 3b20f76

Please sign in to comment.