Skip to content

Commit

Permalink
Update build.gradle.kts
Browse files Browse the repository at this point in the history
Minor changes
  • Loading branch information
shrikanth7698 committed Mar 31, 2022
1 parent b59b8a9 commit e025e2b
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ group = "com.github.ZuperInc"

android {

defaultConfig.versionCode = 100
defaultConfig.versionName = "1.0.0"
defaultConfig.versionCode = 102
defaultConfig.versionName = "1.0.2"

tasks.withType<KotlinCompile> {
kotlinOptions {
Expand Down Expand Up @@ -42,13 +42,16 @@ dependencies {
androidTestImplementation(ComposeTest.Core)
}

publishing {
publications {
create<MavenPublication>("maven") {
groupId = "com.github.ZuperInc"
artifactId = "ComposeCalendar"
version = "1.0.0"
from(components.findByName("release"))

afterEvaluate {
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "com.github.ZuperInc"
artifactId = "ComposeCalendar"
version = "1.0.2"
from(components["release"])
}
}
}
}
Expand Down

0 comments on commit e025e2b

Please sign in to comment.