File tree Expand file tree Collapse file tree 5 files changed +21
-5
lines changed
distribution/src/main/assembly Expand file tree Collapse file tree 5 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 2323 - " *.Jenkinsfile"
2424 - " *.sh"
2525 # In-repo documentation
26- - " copyright .txt"
26+ - " AUTHORS .txt"
2727 - " README.md"
2828 - " MAINTAINERS.md"
2929 - " CONTRIBUTING.md"
Original file line number Diff line number Diff line change 1+ # This file lists copyright owners of the project.
2+ # The list is not exhaustive: other copyright owners exist.
3+ # See CONTRIBUTING.md for instructions regarding how to be added to this list.
4+
5+ # Corporate contributors
6+
7+ Red Hat, Inc.
8+
9+ # Individual contributors
10+
111Adam Stawicki
212Ahmed Al Hafoudh
313Alaa Nassef
Original file line number Diff line number Diff line change @@ -17,6 +17,12 @@ in the root directory of the repository.
1717All contributions are subject to the [ Developer Certificate of Origin (DCO)] ( https://developercertificate.org/ ) .
1818The DCO text is also included verbatim in the [ dco.txt] ( dco.txt ) file in the root directory of the repository.
1919
20+ Copyright owners are listed in [ AUTHORS.txt] ( AUTHORS.txt ) .
21+ Contributors with a valid copyright claim can request to be added to that list
22+ by sending a pull request to the project's GitHub repository,
23+ listing at least one relevant contribution in the pull request description.
24+ Note: one-liner or repetitive patches may not be sufficient to claim copyright.
25+
2026## Finding something to contribute
2127
2228Our [ JIRA instance] ( https://hibernate.atlassian.net/browse/HV ) is where all tasks are reported and tracked.
Original file line number Diff line number Diff line change 6262 <outputDirectory >/</outputDirectory >
6363 </file >
6464 <file >
65- <source >../copyright .txt</source >
65+ <source >../AUTHORS .txt</source >
6666 <outputDirectory >/</outputDirectory >
6767 </file >
6868 <file >
8282 <exclude >README.md</exclude >
8383 <exclude >CONTRIBUTING.md</exclude >
8484 <exclude >changelog.txt</exclude >
85- <exclude >copyright .txt</exclude >
85+ <exclude >AUTHORS .txt</exclude >
8686 <exclude >license.txt</exclude >
8787
8888 <!-- only needed for documentation and helper scripts, no need to include them -->
Original file line number Diff line number Diff line change 22
33# gencopyright.sh
44#
5- # Generates the copyright .txt file mentioned in the license header
5+ # Generates the AUTHORS .txt file mentioned in the license header
66
77SCRIPT_PATH=$( dirname $0 )
88ROOT_PATH=" $SCRIPT_PATH /../../../"
9- COPYRIGHT_FILE_NAME=" copyright .txt"
9+ COPYRIGHT_FILE_NAME=" AUTHORS .txt"
1010
1111JAVADOC_AUTHORS=$( grep ' @author [^<]*' -ho -r --include=" *.java" $ROOT_PATH | sed ' s/@author//;s/^[[:space:]]*//;s/[[:space:]]*$//;s/"\r"//' )
1212GIT_AUTHORS=$( git log --pretty=format:" %an" )
You can’t perform that action at this time.
0 commit comments