Skip to content

Commit

Permalink
Centralize versioning on Gradle properties (#41)
Browse files Browse the repository at this point in the history
* Centralize versioning on Gradle properties

* Add more ignores
  • Loading branch information
boswelja authored Jan 9, 2024
1 parent 9fbaa6c commit 5d52ee4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ plugins {
id("maven-publish")
id("signing")
}
group = "io.github.boswelja.menuprovider"
version = "1.1.1"

group = findProperty("group")!!
version = findProperty("version")!!

android {
namespace = "com.boswelja.menuprovider"
Expand Down
4 changes: 4 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ org.gradle.caching=true
android.useAndroidX=true

kotlin.code.style=official

# Below here is all packaging details, not build configuration.
version=1.2.0
group=io.github.boswelja.menuprovider
4 changes: 2 additions & 2 deletions material3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ plugins {
id("signing")
}

group = "io.github.boswelja.menuprovider"
version = "1.1.1"
group = findProperty("group")!!
version = findProperty("version")!!

android {
namespace = "com.boswelja.menuprovider.material3"
Expand Down

0 comments on commit 5d52ee4

Please sign in to comment.