Skip to content

Commit d1ef45a

Browse files
committed
Rename copyright.txt to AUTHORS.txt
to be consistent
1 parent d0ecda5 commit d1ef45a

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

.github/hibernate-github-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jira:
2323
- "*.Jenkinsfile"
2424
- "*.sh"
2525
# In-repo documentation
26-
- "copyright.txt"
26+
- "AUTHORS.txt"
2727
- "README.md"
2828
- "MAINTAINERS.md"
2929
- "CONTRIBUTING.md"

copyright.txt renamed to AUTHORS.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
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+
111
Adam Stawicki
212
Ahmed Al Hafoudh
313
Alaa Nassef

CONTRIBUTING.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ in the root directory of the repository.
1717
All contributions are subject to the [Developer Certificate of Origin (DCO)](https://developercertificate.org/).
1818
The 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

2228
Our [JIRA instance](https://hibernate.atlassian.net/browse/HV) is where all tasks are reported and tracked.

distribution/src/main/assembly/dist.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<outputDirectory>/</outputDirectory>
6363
</file>
6464
<file>
65-
<source>../copyright.txt</source>
65+
<source>../AUTHORS.txt</source>
6666
<outputDirectory>/</outputDirectory>
6767
</file>
6868
<file>
@@ -82,7 +82,7 @@
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 -->

src/main/scripts/gencopyright.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
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

77
SCRIPT_PATH=$(dirname $0)
88
ROOT_PATH="$SCRIPT_PATH/../../../"
9-
COPYRIGHT_FILE_NAME="copyright.txt"
9+
COPYRIGHT_FILE_NAME="AUTHORS.txt"
1010

1111
JAVADOC_AUTHORS=$(grep '@author [^<]*' -ho -r --include="*.java" $ROOT_PATH | sed 's/@author//;s/^[[:space:]]*//;s/[[:space:]]*$//;s/"\r"//')
1212
GIT_AUTHORS=$(git log --pretty=format:"%an")

0 commit comments

Comments
 (0)