Skip to content

Commit

Permalink
update artifactId
Browse files Browse the repository at this point in the history
  • Loading branch information
moclam1905 committed Jan 11, 2025
1 parent a7ba92e commit d5cf14e
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions kbloom/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ plugins {
id("maven-publish")
}


group = "com.github.moclam1905"
version = "1.0"


android {
namespace = "com.nguyenmoclam.kbloom"
compileSdk = 35
Expand Down Expand Up @@ -33,6 +38,21 @@ android {
}
}


afterEvaluate {
publishing {
publications {
create<MavenPublication>("release") {
groupId = "com.github.moclam1905"
artifactId = "kbloom"
version = "1.0"

from(components["release"])
}
}
}
}

dependencies {

implementation(libs.androidx.core.ktx)
Expand All @@ -42,6 +62,3 @@ dependencies {
androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core)
}

group = "com.github.moclam1905"
version = "1.0"

0 comments on commit d5cf14e

Please sign in to comment.