Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: fix gradle publish failures in release-0.52 for hedera.com.evm #14546

Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ plugins {
id("com.hedera.gradle.maven-publish")
}

// Publishing tasks are only enabled if we publish to the matching group.
// Otherwise, Nexus configuration and credentials do not fit.
val publishingPackageGroup = providers.gradleProperty("publishingPackageGroup").getOrElse("")

tasks.withType<PublishToMavenRepository>().configureEach {
enabled = publishingPackageGroup == "com.hedera"
}

publishing {
publications {
named<MavenPublication>("maven") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ javaModuleDependencies {
moduleNamePrefixToGroup.put("com.hedera.node.", "com.hedera.hashgraph")
moduleNamePrefixToGroup.put("com.hedera.storage.", "com.hedera.storage.blocknode")
moduleNameToGA.put("com.hedera.evm", "com.hedera.evm:hedera-evm")
moduleNameToGA.put("com.hedera.evm.impl", "com.hedera:hedera-evm-impl")
moduleNameToGA.put("com.hedera.evm.impl", "com.hedera.evm:hedera-evm-impl")
}
Loading