From 115c83a19a3e4a17e3ef16f09025fa8bdd41acac Mon Sep 17 00:00:00 2001 From: Vankka Date: Sat, 28 May 2022 19:36:50 +0300 Subject: [PATCH] Move license split info into readme & rename license files a bit --- LICENSE-GPLv3 => LICENSE | 0 LICENSE-MIT => LICENSE-API | 0 LICENSE.txt | 7 ------- README.md | 11 +++++++++++ buildscript/final.gradle | 2 +- 5 files changed, 12 insertions(+), 8 deletions(-) rename LICENSE-GPLv3 => LICENSE (100%) rename LICENSE-MIT => LICENSE-API (100%) delete mode 100644 LICENSE.txt create mode 100644 README.md diff --git a/LICENSE-GPLv3 b/LICENSE similarity index 100% rename from LICENSE-GPLv3 rename to LICENSE diff --git a/LICENSE-MIT b/LICENSE-API similarity index 100% rename from LICENSE-MIT rename to LICENSE-API diff --git a/LICENSE.txt b/LICENSE.txt deleted file mode 100644 index 4229c646..00000000 --- a/LICENSE.txt +++ /dev/null @@ -1,7 +0,0 @@ -DiscordSRV is dual licensed - -The `api`-module is licensed under the MIT License. - -Everything else is licensed under GPLv3 or later, unless otherwise noted. - -You may view these licenses in the `LICENSE-MIT` and `LICENSE-GPLv3` files. diff --git a/README.md b/README.md new file mode 100644 index 00000000..ef66dce0 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# Temporary repository for DiscordSRV2 [Not ready, not usable] + +# DiscordSRV + +### License + +DiscordSRV is dual licensed + +The `api`-module is licensed under the MIT License (see [LICENSE-API](./LICENSE-API)). + +Everything else is licensed under GPLv3 or later (see [LICENSE](./LICENSE)), unless otherwise noted. diff --git a/buildscript/final.gradle b/buildscript/final.gradle index 5c972d10..84aae49f 100644 --- a/buildscript/final.gradle +++ b/buildscript/final.gradle @@ -10,7 +10,7 @@ shadowJar { archiveClassifier = '' // Include the license in the jar - from(rootProject.file('licenses/GPLv3.txt')) { + from(rootProject.file('licenses/LICENSE')) { rename { fileName -> 'LICENSE.txt' } }