Skip to content

Commit

Permalink
Release 1.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
naulian-codigo committed Mar 24, 2024
1 parent c9b25ef commit a9e8154
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions glow-compose/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ android {
publishing {
singleVariant("release") {
withSourcesJar()
withJavadocJar()
}
}
}
Expand Down
23 changes: 23 additions & 0 deletions glow-core/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
`maven-publish`
}

android {
Expand Down Expand Up @@ -40,4 +41,26 @@ dependencies {
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
}

android {
publishing {
singleVariant("release") {
withSourcesJar()
withJavadocJar()
}
}
}

afterEvaluate {
publishing {
publications {
create<MavenPublication>("release") {
from(components["release"])
groupId = "com.naulian"
artifactId = "glow-core"
version = "1.3.9"
}
}
}
}
1 change: 1 addition & 0 deletions glow/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ android {
publishing {
singleVariant("release") {
withSourcesJar()
withJavadocJar()
}
}
}
Expand Down

0 comments on commit a9e8154

Please sign in to comment.