Clarifies license to prevent dispute

This commit is contained in:
Kristian Knarvik 2022-03-11 17:21:37 +01:00
parent 758262e9d7
commit add777a91b
3 changed files with 41 additions and 1 deletions

15
HEADER Normal file
View File

@ -0,0 +1,15 @@
PermissionSigns - A permission shop plugin for Spigot
Copyright (C) 2022 Kristian Knarvik (EpicKnarvik97)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.

View File

@ -74,3 +74,8 @@ spaces.
The easiest way to add a new language is to copy an existing language and paste it into your custom strings.yml and
change strings as necessary. If you don't include all strings, the remaining will use the built-in English translation.
Remember to change the language code to whichever you use for your custom language.
## License
PermissionSigns is licensed under the GNU Public License Version 3.0. This includes every source and resource file. See
the HEADER file for a more detailed license description.

View File

@ -34,6 +34,26 @@ import java.util.Queue;
import java.util.UUID;
import java.util.stream.Stream;
/*
PermissionSigns - A permission shop plugin for Spigot
Copyright (C) 2022 Kristian Knarvik (EpicKnarvik97)
The following license notice applies to all source and resource files in the PermissionSigns project:
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* The main permissionsigns class
*/