From 44658cdaace2d73f9d4182ad2c12b3023e4ab613 Mon Sep 17 00:00:00 2001 From: SoraxDubbing <52173496+Sorax5@users.noreply.github.com> Date: Tue, 5 Mar 2024 13:24:09 +0100 Subject: [PATCH 1/5] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index b3b048b..be92e69 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,10 @@ Le plugin est organisé selon le pattern MVC: Il utilise notamment le design pattern d'Observer. +

+ +

+ ### **Build du plugin:** 1. Clonez le repo GitHub From cd8a50813bc6de2ed3307bee52d4dc4a810820ba Mon Sep 17 00:00:00 2001 From: SoraxDubbing <52173496+Sorax5@users.noreply.github.com> Date: Tue, 5 Mar 2024 13:25:10 +0100 Subject: [PATCH 2/5] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index be92e69..73cbf46 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ ### **Objectif:** Ce plugin Minecraft a pour but pédagogique de démontrer l'implémentation du **pattern MVC (Model-View-Controller)** dans le développement d'un **plugin** Minecraft Spigot. +Il n'a pas pour but de vous apprendre a crée des plugins, il faut avoir des bases de java pour comprendre. ### **Fonctionnalités:** From 2a90a58b6c3d0d4c98a9628b1669644d59aa60a0 Mon Sep 17 00:00:00 2001 From: SoraxDubbing <52173496+Sorax5@users.noreply.github.com> Date: Tue, 5 Mar 2024 13:26:58 +0100 Subject: [PATCH 3/5] Create LICENSE --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..6da21ad --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 SoraxDubbing + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From 2302ab08bf54fcd22d89de3c5060567b90c25067 Mon Sep 17 00:00:00 2001 From: SoraxDubbing <52173496+Sorax5@users.noreply.github.com> Date: Tue, 5 Mar 2024 13:32:58 +0100 Subject: [PATCH 4/5] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 73cbf46..26cfbb6 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,11 @@ Ce plugin est sous licence MIT. ### **Contributeurs:** -* [SoraxDubbing] + + + + +Made with [contrib.rocks](https://contrib.rocks). ### **Remarques:** From 49c8ebb6c0ffc30d8adbb140b13353bae894dbf5 Mon Sep 17 00:00:00 2001 From: SoraxDubbing <52173496+Sorax5@users.noreply.github.com> Date: Tue, 5 Mar 2024 18:30:18 +0100 Subject: [PATCH 5/5] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 26cfbb6..10d9cf7 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,10 @@ Il utilise notamment le design pattern d'Observer. +L'architecture est multi-tier (3 exactement), une première qui est l'IHM (Minecraft), une seconde qui est la Logic est enfin le Storage. + +Le storage utilise un DAO, avec des méthodes CRUD (create/read/update/delete) avec de la sérialisation en json utilisant Gson qui est nativement intégré a la librairie de spigot. + ### **Build du plugin:** 1. Clonez le repo GitHub