Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,10 @@ jreleaser {
maven {
def stagingRepositories = ['client/build/staging-deploy',
'common/build/staging-deploy',
'hash-store/build/staging-deploy',
'ledger/build/staging-deploy',
'rpc/build/staging-deploy']
'rpc/build/staging-deploy',
'table-store/build/staging-deploy']
Comment on lines 135 to +140

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For better long-term maintainability, consider defining the list of modules to be deployed separately from their path construction. This approach makes it clearer which modules are included and programmatically ensures the list is always sorted, which can prevent manual sorting errors in the future.

            def stagingRepositories = ['client', 'common', 'hash-store', 'ledger', 'rpc', 'table-store']
                .sort()
                .collect { "$it/build/staging-deploy" }

mavenCentral {
'release-deploy' {
active = 'RELEASE'
Expand Down