This is an automated email from the ASF dual-hosted git repository. kezhenxu94 pushed a commit to branch doc/multiliicense in repository https://gitbox.apache.org/repos/asf/skywalking-eyes.git
commit 1f3eb293e129457097b1f4919d60e28d538ae7af Author: kezhenxu94 <[email protected]> AuthorDate: Sat May 6 08:32:28 2023 +0800 Fix wrong indentation in doc about multi license config --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 48909bd..9292c54 100644 --- a/README.md +++ b/README.md @@ -678,12 +678,12 @@ dependency: # <16> 1. The `header` section is configurations for source codes license header. If you have multiple modules or packages in your project that have differing licenses, this section may contain a list of licenses: ```yaml header: - - license: + - path: "/path/to/module/a" + license: spdx-id: Apache-2.0 - path: "/path/to/module/a" - - license: + - path: "/path/to/module/b" + license: spdx-id: MPL-2.0 - path: "/path/to/module/b" ``` 2. The [SPDX ID](https://spdx.org/licenses/) of the license, it’s convenient when your license is standard SPDX license, so that you can simply specify this identifier without copying the whole license `content` or `pattern`. This will be used as the content when `fix` command needs to insert a license header. 3. The copyright owner to replace the `[owner]` in the `SPDX-ID` license template.
