-
Notifications
You must be signed in to change notification settings - Fork 926
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
Fix incorrectly overridden project groups by JvmTestSuite
.
#4884
Conversation
Motivation: `group` was set in JvmTestSuite's configuration to change the test task's group, but `Project.group` was changed unintentionally. https://github.com/line/armeria/blob/e15c7b7809db6d77c6798c237707e942fceb51bb/core/build.gradle#L178-L180 The overriden group caused to publish a Armeria artifact to `Verification` org in Sonatype snapshot storage. https://github.com/line/armeria/actions/runs/5010142242/jobs/8979748543#step:8:1273 Modifications: - Override the group of a test task in `testTask.configure` block. Result: Fixed unintentionally overridden Gradle project group information.
kotlin/build.gradle.kts
Outdated
|
||
targets { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
armeria/kotlin/build.gradle.kts:25:1 Needless blank line(s) (no-consecutive-blank-lines)
targets { | |
targets { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the quick fix @ikhoon ! 👍 👍 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 👍 👍
Thanks for the quick review. 🙇♂️ |
Motivation:
group
was set in JvmTestSuite's configuration to change the test task's group, butProject.group
was changed unintentionally.armeria/core/build.gradle
Lines 178 to 180 in e15c7b7
The overridden group caused to publish Armeria artifacts to
Verification
org in Sonatype snapshot storage.https://github.com/line/armeria/actions/runs/5010142242/jobs/8979748543#step:8:1273
Modifications:
testTask.configure
block.Result:
Fixed unintentionally overridden Gradle project group information.