Release a snapshot to local maven repository - #1
Conversation
|
@coderabbitai full review |
✅ Actions performedFull review triggered. |
WalkthroughThe changes update two configuration files. In Changes
Sequence Diagram(s)sequenceDiagram
participant Dev as Developer
participant Gradle as Gradle Build
participant Local as Maven Local Repository
Dev->>Gradle: Trigger artifact publishing
Note right of Gradle: Previously used remote/snapshot conditionals
Gradle->>Local: Publish artifact using mavenLocal()
Poem
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
gradle/gradle-mvn-push.gradle (1)
85-97: Transition to Local Maven Repository PublishingThe remote repository configuration has been completely commented out, and the publishing block now directly uses
mavenLocal(). This change meets the PR requirement to release snapshots locally.
Consider cleaning up the commented-out remote publishing code if it will no longer be used in the future, to keep the build script concise and maintainable.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (2)
gradle.properties(1 hunks)gradle/gradle-mvn-push.gradle(1 hunks)
🔇 Additional comments (1)
gradle.properties (1)
56-56: Disable Release Signing for Local PublishingThe property
RELEASE_SIGNING_ENABLEDhas been updated fromtruetofalse, which aligns with the PR objective of releasing snapshots to the local Maven repository without signing. Ensure that this change is consistent with your build and release processes, and that any tasks expecting signed artifacts are updated accordingly.
Release a snapshot to local maven repository.
Summary by CodeRabbit