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 23
23
- " *.Jenkinsfile"
24
24
- " *.sh"
25
25
# In-repo documentation
26
- - " copyright .txt"
26
+ - " AUTHORS .txt"
27
27
- " README.md"
28
28
- " MAINTAINERS.md"
29
29
- " 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
+
1
11
Adam Stawicki
2
12
Ahmed Al Hafoudh
3
13
Alaa Nassef
Original file line number Diff line number Diff line change @@ -17,6 +17,12 @@ in the root directory of the repository.
17
17
All contributions are subject to the [ Developer Certificate of Origin (DCO)] ( https://developercertificate.org/ ) .
18
18
The DCO text is also included verbatim in the [ dco.txt] ( dco.txt ) file in the root directory of the repository.
19
19
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
+
20
26
## Finding something to contribute
21
27
22
28
Our [ 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 62
62
<outputDirectory >/</outputDirectory >
63
63
</file >
64
64
<file >
65
- <source >../copyright .txt</source >
65
+ <source >../AUTHORS .txt</source >
66
66
<outputDirectory >/</outputDirectory >
67
67
</file >
68
68
<file >
82
82
<exclude >README.md</exclude >
83
83
<exclude >CONTRIBUTING.md</exclude >
84
84
<exclude >changelog.txt</exclude >
85
- <exclude >copyright .txt</exclude >
85
+ <exclude >AUTHORS .txt</exclude >
86
86
<exclude >license.txt</exclude >
87
87
88
88
<!-- only needed for documentation and helper scripts, no need to include them -->
Original file line number Diff line number Diff line change 2
2
3
3
# gencopyright.sh
4
4
#
5
- # Generates the copyright .txt file mentioned in the license header
5
+ # Generates the AUTHORS .txt file mentioned in the license header
6
6
7
7
SCRIPT_PATH=$( dirname $0 )
8
8
ROOT_PATH=" $SCRIPT_PATH /../../../"
9
- COPYRIGHT_FILE_NAME=" copyright .txt"
9
+ COPYRIGHT_FILE_NAME=" AUTHORS .txt"
10
10
11
11
JAVADOC_AUTHORS=$( grep ' @author [^<]*' -ho -r --include=" *.java" $ROOT_PATH | sed ' s/@author//;s/^[[:space:]]*//;s/[[:space:]]*$//;s/"\r"//' )
12
12
GIT_AUTHORS=$( git log --pretty=format:" %an" )
You can’t perform that action at this time.
0 commit comments