Open
Conversation
This commit refactors the publishing setup for the `library` and `library-compose` modules, moving project-specific POM metadata from `gradle.properties` files directly into the module-level `build.gradle.kts` files using the `mavenPublishing` extension. Key changes: - Removed legacy `POM_*` properties from `gradle.properties` files in the root and library modules. - Configured explicit `coordinates` and `pom` metadata within `library/build.gradle.kts` and `library-compose/build.gradle.kts`. - Updated `androidTarget` in `library-compose` to publish both `release` and `debug` variants. - Simplified root `gradle.properties` by removing redundant publishing and signing configurations. - Removed the explicit `KotlinMultiplatform()` configuration call in `library-compose` in favor of manual coordinate and POM setup.
This commit adds the `group` property to `library/build.gradle.kts` and `library-compose/build.gradle.kts` to define the Maven artifact group. Key changes: - Set `group = "app.futured.donut"` in both the legacy View library and the Compose library modules.
|
|
||
| androidTarget { | ||
| publishLibraryVariants("release") | ||
| publishLibraryVariants("release", "debug") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR refactors the publishing setup for the
libraryandlibrary-composemodules, moving project-specific POM metadata fromgradle.propertiesfiles directly into the module-levelbuild.gradle.ktsfiles using themavenPublishingextension.Key changes:
POM_*properties fromgradle.propertiesfiles in the root and library modules.coordinatesandpommetadata withinlibrary/build.gradle.ktsandlibrary-compose/build.gradle.kts.androidTargetinlibrary-composeto publish bothreleaseanddebugvariants.gradle.propertiesby removing redundant publishing and signing configurations.KotlinMultiplatform()configuration call inlibrary-composein favor of manual coordinate and POM setup.group = "app.futured.donut"in both the legacy View library and the Compose library modules.