-
Notifications
You must be signed in to change notification settings - Fork 926
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Gradle
publish
task to work (#4961)
Motivation: `gradle publish` fails to publish because of illegal usage in `grpc-kotlin` without dependencies. ``` Task ':grpc-kotlin:kotlinSourcesJar' uses this output of task ':grpc-kotlin:generateProto' without declaring an explicit or implicit dependency. This can lead to incorrect results being produced, depending on what order the tasks are executed. ``` https://github.com/line/armeria/actions/runs/5275219571/jobs/9540456642#step:8:1415 Modifications: - Make `kotlinSourcesJar` depend on `generateProto` and `copyAlpnAgent` Result: Publish artifacts to Maven Central
- Loading branch information
Showing
2 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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