Skip to content

Commit

Permalink
common versions for all
Browse files Browse the repository at this point in the history
  • Loading branch information
anwarpro committed Oct 16, 2024
1 parent abe08eb commit 8281722
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion actions/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ mavenPublishing {
coordinates(
groupId = "com.helloanwar.mvvmate",
artifactId = "actions",
version = "0.0.2"
version = libs.versions.mvvmate.version.get()
)

// Configure POM metadata for the published artifact
Expand Down
4 changes: 3 additions & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ mavenPublishing {
coordinates(
groupId = "com.helloanwar.mvvmate",
artifactId = "core",
version = "0.0.2"
version = libs.versions.mvvmate.version.get()
)

// Configure POM metadata for the published artifact
Expand Down Expand Up @@ -164,6 +164,8 @@ mavenPublishing {
signAllPublications()
}

val previousVersionsDirectory = project.rootProject.projectDir.resolve("previousDocVersions").invariantSeparatorsPath

tasks.dokkaHtml {
outputDirectory.set(buildDir.resolve("dokka"))
dokkaSourceSets {
Expand Down
1 change: 1 addition & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ agp = "8.2.2"
android-compileSdk = "34"
android-minSdk = "24"
android-targetSdk = "34"
mvvmate-version = "0.0.2"
androidx-activityCompose = "1.9.1"
androidx-appcompat = "1.7.0"
androidx-constraintlayout = "2.1.4"
Expand Down
2 changes: 1 addition & 1 deletion network-actions/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ mavenPublishing {
coordinates(
groupId = "com.helloanwar.mvvmate",
artifactId = "network-actions",
version = "0.0.2"
version = libs.versions.mvvmate.version.get()
)

// Configure POM metadata for the published artifact
Expand Down
2 changes: 1 addition & 1 deletion network/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ mavenPublishing {
coordinates(
groupId = "com.helloanwar.mvvmate",
artifactId = "network",
version = "0.0.2"
version = libs.versions.mvvmate.version.get()
)

// Configure POM metadata for the published artifact
Expand Down

0 comments on commit 8281722

Please sign in to comment.