From 1a6a3e5cbd42541c7db608093736668a9ea7b9ba Mon Sep 17 00:00:00 2001 From: Robin Date: Sat, 6 Jul 2024 14:33:11 +0200 Subject: [PATCH] update license header and added maven publishing --- HEADER.java | 18 ++++++++++---- build.gradle.kts | 24 +++++++++++++++---- .../environmenttech/unittest/TestMod.java | 18 ++++++++++---- .../unittest/TestProgressBar.java | 18 ++++++++++---- .../robaertschi/environmenttech/Config.java | 18 ++++++++++---- .../java/robaertschi/environmenttech/ET.java | 18 ++++++++++---- .../environmenttech/EnvironmentTech.java | 18 ++++++++++---- .../environmenttech/client/ETClient.java | 18 ++++++++++---- .../client/particle/EnvParticleProvider.java | 18 ++++++++++---- .../client/renderer/ContentBoxRenderer.java | 18 ++++++++++---- .../client/screen/EnvCollectorScreen.java | 18 ++++++++++---- .../client/screen/ProgressArrowUtils.java | 18 ++++++++++---- .../command/EnvironmenttechCommand.java | 18 ++++++++++---- .../environmenttech/compat/ETCompat.java | 18 ++++++++++---- .../compat/emi/EmiCompatPlugin.java | 18 ++++++++++---- .../compat/emi/EnvCollectorEmiRecipe.java | 18 ++++++++++---- .../emi/EnvCollectorEmiRecipeHandler.java | 18 ++++++++++---- .../jei/EnvCollectorRecipeCategory.java | 18 ++++++++++---- .../compat/jei/JeiCompatPlugin.java | 18 ++++++++++---- .../compat/top/TOPInfoProvider.java | 18 ++++++++++---- .../environmenttech/compat/top/TopCompat.java | 18 ++++++++++---- .../data/attachments/ETAttachments.java | 18 ++++++++++---- .../data/capabilities/AdaptedItemHandler.java | 18 ++++++++++---- .../data/capabilities/ETCapabilities.java | 18 ++++++++++---- .../data/capabilities/EnvStorage.java | 18 ++++++++++---- .../data/capabilities/EnvType.java | 18 ++++++++++---- .../data/capabilities/IEnvStorage.java | 18 ++++++++++---- .../data/components/ETComponents.java | 18 ++++++++++---- .../data/components/FilledComponent.java | 18 ++++++++++---- .../data/recipes/ETRecipes.java | 18 ++++++++++---- .../data/recipes/EnvCollectorRecipe.java | 18 ++++++++++---- .../recipes/EnvCollectorRecipeSerializer.java | 18 ++++++++++---- .../datagen/ETBlockStateProvider.java | 18 ++++++++++---- .../environmenttech/datagen/ETDatagen.java | 18 ++++++++++---- .../datagen/ETItemModelProvider.java | 18 ++++++++++---- .../datagen/ETRecipeProvider.java | 18 ++++++++++---- .../environmenttech/level/ETChunkEvents.java | 18 ++++++++++---- .../environmenttech/level/block/ETBlocks.java | 18 ++++++++++---- .../level/block/EnvCollectorBlock.java | 18 ++++++++++---- .../level/block/EnvDistributorBlock.java | 18 ++++++++++---- .../level/block/SimpleBlockWithEntity.java | 18 ++++++++++---- .../level/block/entity/ETBlockEntities.java | 18 ++++++++++---- .../block/entity/EnvCollectorBlockEntity.java | 18 ++++++++++---- .../entity/EnvDistributorBlockEntity.java | 18 ++++++++++---- .../block/entity/ITickableBlockEntity.java | 18 ++++++++++---- .../entity/renderer/EnvCollectorRenderer.java | 18 ++++++++++---- .../renderer/EnvDistributorRenderer.java | 18 ++++++++++---- .../level/fluid/ETFluidTypes.java | 18 ++++++++++---- .../environmenttech/level/fluid/ETFluids.java | 18 ++++++++++---- .../environmenttech/level/item/ETItems.java | 18 ++++++++++---- .../level/item/EnvDetectorItem.java | 18 ++++++++++---- .../level/particle/ETParticles.java | 18 ++++++++++---- .../level/particle/EnvParticle.java | 18 ++++++++++---- .../environmenttech/menu/ETMenus.java | 18 ++++++++++---- .../menu/EnvCollectorMenu.java | 18 ++++++++++---- 55 files changed, 776 insertions(+), 220 deletions(-) diff --git a/HEADER.java b/HEADER.java index dba6113..bb0991f 100644 --- a/HEADER.java +++ b/HEADER.java @@ -1,6 +1,16 @@ /* - * EnvironmentTech Copyright (C) $YEAR Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) $YEAR Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 8314ff5..e00a8d0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -75,6 +75,7 @@ base { java.toolchain.languageVersion = JavaLanguageVersion.of(21) + spotless { format("misc") { target("*.gradle.kts", ".gitattributes", ".gitignore") @@ -273,21 +274,36 @@ tasks.withType().configureEach { } +java { + withSourcesJar() + withJavadocJar() +} + // Example configuration to allow publishing using the maven-publish plugin publishing { publications { - register("mavenJava") { - from (components["java"]) + register("maven"){ + pom { + licenses { + name = "GNU Lesser General Public License Version 3" + } + } + from(components["java"]) } } repositories { - maven { - url = project.projectDir.toURI() + val baseURL = "https://maven.robaertschi.xyz/" + + url = uri("${baseURL}${if (version.toString().endsWith("SNAPSHOT")) "snapshots" else "releases"}") } } } +tasks.javadoc { + (options as StandardJavadocDocletOptions).addBooleanOption("html5", true) +} + // IDEA no longer automatically downloads sources/javadoc jars for dependencies, so we need to explicitly enable the behavior. idea { module { diff --git a/src/junit/java/robaertschi/environmenttech/unittest/TestMod.java b/src/junit/java/robaertschi/environmenttech/unittest/TestMod.java index 47188ea..256f2b1 100644 --- a/src/junit/java/robaertschi/environmenttech/unittest/TestMod.java +++ b/src/junit/java/robaertschi/environmenttech/unittest/TestMod.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.unittest; diff --git a/src/junit/java/robaertschi/environmenttech/unittest/TestProgressBar.java b/src/junit/java/robaertschi/environmenttech/unittest/TestProgressBar.java index 08f5037..ff755f5 100644 --- a/src/junit/java/robaertschi/environmenttech/unittest/TestProgressBar.java +++ b/src/junit/java/robaertschi/environmenttech/unittest/TestProgressBar.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.unittest; diff --git a/src/main/java/robaertschi/environmenttech/Config.java b/src/main/java/robaertschi/environmenttech/Config.java index 17db0dd..96a70bd 100644 --- a/src/main/java/robaertschi/environmenttech/Config.java +++ b/src/main/java/robaertschi/environmenttech/Config.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech; diff --git a/src/main/java/robaertschi/environmenttech/ET.java b/src/main/java/robaertschi/environmenttech/ET.java index 8195bf4..c595f21 100644 --- a/src/main/java/robaertschi/environmenttech/ET.java +++ b/src/main/java/robaertschi/environmenttech/ET.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech; diff --git a/src/main/java/robaertschi/environmenttech/EnvironmentTech.java b/src/main/java/robaertschi/environmenttech/EnvironmentTech.java index a1db8ea..90e7cf3 100644 --- a/src/main/java/robaertschi/environmenttech/EnvironmentTech.java +++ b/src/main/java/robaertschi/environmenttech/EnvironmentTech.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech; diff --git a/src/main/java/robaertschi/environmenttech/client/ETClient.java b/src/main/java/robaertschi/environmenttech/client/ETClient.java index a10cd2c..987795e 100644 --- a/src/main/java/robaertschi/environmenttech/client/ETClient.java +++ b/src/main/java/robaertschi/environmenttech/client/ETClient.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.client; diff --git a/src/main/java/robaertschi/environmenttech/client/particle/EnvParticleProvider.java b/src/main/java/robaertschi/environmenttech/client/particle/EnvParticleProvider.java index 292d2f3..94ece1b 100644 --- a/src/main/java/robaertschi/environmenttech/client/particle/EnvParticleProvider.java +++ b/src/main/java/robaertschi/environmenttech/client/particle/EnvParticleProvider.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.client.particle; diff --git a/src/main/java/robaertschi/environmenttech/client/renderer/ContentBoxRenderer.java b/src/main/java/robaertschi/environmenttech/client/renderer/ContentBoxRenderer.java index a95e3f3..623d64d 100644 --- a/src/main/java/robaertschi/environmenttech/client/renderer/ContentBoxRenderer.java +++ b/src/main/java/robaertschi/environmenttech/client/renderer/ContentBoxRenderer.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.client.renderer; diff --git a/src/main/java/robaertschi/environmenttech/client/screen/EnvCollectorScreen.java b/src/main/java/robaertschi/environmenttech/client/screen/EnvCollectorScreen.java index 352c2f0..8822b52 100644 --- a/src/main/java/robaertschi/environmenttech/client/screen/EnvCollectorScreen.java +++ b/src/main/java/robaertschi/environmenttech/client/screen/EnvCollectorScreen.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.client.screen; diff --git a/src/main/java/robaertschi/environmenttech/client/screen/ProgressArrowUtils.java b/src/main/java/robaertschi/environmenttech/client/screen/ProgressArrowUtils.java index 8f84907..e7e8120 100644 --- a/src/main/java/robaertschi/environmenttech/client/screen/ProgressArrowUtils.java +++ b/src/main/java/robaertschi/environmenttech/client/screen/ProgressArrowUtils.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.client.screen; diff --git a/src/main/java/robaertschi/environmenttech/command/EnvironmenttechCommand.java b/src/main/java/robaertschi/environmenttech/command/EnvironmenttechCommand.java index bac8060..533f788 100644 --- a/src/main/java/robaertschi/environmenttech/command/EnvironmenttechCommand.java +++ b/src/main/java/robaertschi/environmenttech/command/EnvironmenttechCommand.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.command; diff --git a/src/main/java/robaertschi/environmenttech/compat/ETCompat.java b/src/main/java/robaertschi/environmenttech/compat/ETCompat.java index 43e8d61..fabae29 100644 --- a/src/main/java/robaertschi/environmenttech/compat/ETCompat.java +++ b/src/main/java/robaertschi/environmenttech/compat/ETCompat.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.compat; diff --git a/src/main/java/robaertschi/environmenttech/compat/emi/EmiCompatPlugin.java b/src/main/java/robaertschi/environmenttech/compat/emi/EmiCompatPlugin.java index 25761d4..a0569c5 100644 --- a/src/main/java/robaertschi/environmenttech/compat/emi/EmiCompatPlugin.java +++ b/src/main/java/robaertschi/environmenttech/compat/emi/EmiCompatPlugin.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.compat.emi; diff --git a/src/main/java/robaertschi/environmenttech/compat/emi/EnvCollectorEmiRecipe.java b/src/main/java/robaertschi/environmenttech/compat/emi/EnvCollectorEmiRecipe.java index 122c59d..b5b0fb2 100644 --- a/src/main/java/robaertschi/environmenttech/compat/emi/EnvCollectorEmiRecipe.java +++ b/src/main/java/robaertschi/environmenttech/compat/emi/EnvCollectorEmiRecipe.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.compat.emi; diff --git a/src/main/java/robaertschi/environmenttech/compat/emi/EnvCollectorEmiRecipeHandler.java b/src/main/java/robaertschi/environmenttech/compat/emi/EnvCollectorEmiRecipeHandler.java index d2b9683..fd25f55 100644 --- a/src/main/java/robaertschi/environmenttech/compat/emi/EnvCollectorEmiRecipeHandler.java +++ b/src/main/java/robaertschi/environmenttech/compat/emi/EnvCollectorEmiRecipeHandler.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.compat.emi; diff --git a/src/main/java/robaertschi/environmenttech/compat/jei/EnvCollectorRecipeCategory.java b/src/main/java/robaertschi/environmenttech/compat/jei/EnvCollectorRecipeCategory.java index c18072d..fa38b1c 100644 --- a/src/main/java/robaertschi/environmenttech/compat/jei/EnvCollectorRecipeCategory.java +++ b/src/main/java/robaertschi/environmenttech/compat/jei/EnvCollectorRecipeCategory.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.compat.jei; diff --git a/src/main/java/robaertschi/environmenttech/compat/jei/JeiCompatPlugin.java b/src/main/java/robaertschi/environmenttech/compat/jei/JeiCompatPlugin.java index 4426956..2a3282e 100644 --- a/src/main/java/robaertschi/environmenttech/compat/jei/JeiCompatPlugin.java +++ b/src/main/java/robaertschi/environmenttech/compat/jei/JeiCompatPlugin.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.compat.jei; diff --git a/src/main/java/robaertschi/environmenttech/compat/top/TOPInfoProvider.java b/src/main/java/robaertschi/environmenttech/compat/top/TOPInfoProvider.java index a02c9dd..42c3747 100644 --- a/src/main/java/robaertschi/environmenttech/compat/top/TOPInfoProvider.java +++ b/src/main/java/robaertschi/environmenttech/compat/top/TOPInfoProvider.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.compat.top; diff --git a/src/main/java/robaertschi/environmenttech/compat/top/TopCompat.java b/src/main/java/robaertschi/environmenttech/compat/top/TopCompat.java index dc71a25..82d990c 100644 --- a/src/main/java/robaertschi/environmenttech/compat/top/TopCompat.java +++ b/src/main/java/robaertschi/environmenttech/compat/top/TopCompat.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.compat.top; diff --git a/src/main/java/robaertschi/environmenttech/data/attachments/ETAttachments.java b/src/main/java/robaertschi/environmenttech/data/attachments/ETAttachments.java index 9469210..903cc03 100644 --- a/src/main/java/robaertschi/environmenttech/data/attachments/ETAttachments.java +++ b/src/main/java/robaertschi/environmenttech/data/attachments/ETAttachments.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.data.attachments; diff --git a/src/main/java/robaertschi/environmenttech/data/capabilities/AdaptedItemHandler.java b/src/main/java/robaertschi/environmenttech/data/capabilities/AdaptedItemHandler.java index 266be44..44c28f3 100644 --- a/src/main/java/robaertschi/environmenttech/data/capabilities/AdaptedItemHandler.java +++ b/src/main/java/robaertschi/environmenttech/data/capabilities/AdaptedItemHandler.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.data.capabilities; diff --git a/src/main/java/robaertschi/environmenttech/data/capabilities/ETCapabilities.java b/src/main/java/robaertschi/environmenttech/data/capabilities/ETCapabilities.java index cf3a3ea..bf4cc83 100644 --- a/src/main/java/robaertschi/environmenttech/data/capabilities/ETCapabilities.java +++ b/src/main/java/robaertschi/environmenttech/data/capabilities/ETCapabilities.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.data.capabilities; diff --git a/src/main/java/robaertschi/environmenttech/data/capabilities/EnvStorage.java b/src/main/java/robaertschi/environmenttech/data/capabilities/EnvStorage.java index 5a13b58..42bb89f 100644 --- a/src/main/java/robaertschi/environmenttech/data/capabilities/EnvStorage.java +++ b/src/main/java/robaertschi/environmenttech/data/capabilities/EnvStorage.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.data.capabilities; diff --git a/src/main/java/robaertschi/environmenttech/data/capabilities/EnvType.java b/src/main/java/robaertschi/environmenttech/data/capabilities/EnvType.java index b1a998b..b55f76c 100644 --- a/src/main/java/robaertschi/environmenttech/data/capabilities/EnvType.java +++ b/src/main/java/robaertschi/environmenttech/data/capabilities/EnvType.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.data.capabilities; diff --git a/src/main/java/robaertschi/environmenttech/data/capabilities/IEnvStorage.java b/src/main/java/robaertschi/environmenttech/data/capabilities/IEnvStorage.java index 88e3c5e..c021b87 100644 --- a/src/main/java/robaertschi/environmenttech/data/capabilities/IEnvStorage.java +++ b/src/main/java/robaertschi/environmenttech/data/capabilities/IEnvStorage.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.data.capabilities; diff --git a/src/main/java/robaertschi/environmenttech/data/components/ETComponents.java b/src/main/java/robaertschi/environmenttech/data/components/ETComponents.java index 8d0f950..6ec1342 100644 --- a/src/main/java/robaertschi/environmenttech/data/components/ETComponents.java +++ b/src/main/java/robaertschi/environmenttech/data/components/ETComponents.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.data.components; diff --git a/src/main/java/robaertschi/environmenttech/data/components/FilledComponent.java b/src/main/java/robaertschi/environmenttech/data/components/FilledComponent.java index 8d46a51..38cb1ff 100644 --- a/src/main/java/robaertschi/environmenttech/data/components/FilledComponent.java +++ b/src/main/java/robaertschi/environmenttech/data/components/FilledComponent.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.data.components; diff --git a/src/main/java/robaertschi/environmenttech/data/recipes/ETRecipes.java b/src/main/java/robaertschi/environmenttech/data/recipes/ETRecipes.java index f5f9a2c..fba3a72 100644 --- a/src/main/java/robaertschi/environmenttech/data/recipes/ETRecipes.java +++ b/src/main/java/robaertschi/environmenttech/data/recipes/ETRecipes.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.data.recipes; diff --git a/src/main/java/robaertschi/environmenttech/data/recipes/EnvCollectorRecipe.java b/src/main/java/robaertschi/environmenttech/data/recipes/EnvCollectorRecipe.java index a26410b..94bb9ec 100644 --- a/src/main/java/robaertschi/environmenttech/data/recipes/EnvCollectorRecipe.java +++ b/src/main/java/robaertschi/environmenttech/data/recipes/EnvCollectorRecipe.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.data.recipes; diff --git a/src/main/java/robaertschi/environmenttech/data/recipes/EnvCollectorRecipeSerializer.java b/src/main/java/robaertschi/environmenttech/data/recipes/EnvCollectorRecipeSerializer.java index c0d56b5..ac01854 100644 --- a/src/main/java/robaertschi/environmenttech/data/recipes/EnvCollectorRecipeSerializer.java +++ b/src/main/java/robaertschi/environmenttech/data/recipes/EnvCollectorRecipeSerializer.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.data.recipes; diff --git a/src/main/java/robaertschi/environmenttech/datagen/ETBlockStateProvider.java b/src/main/java/robaertschi/environmenttech/datagen/ETBlockStateProvider.java index 9984881..a2052f5 100644 --- a/src/main/java/robaertschi/environmenttech/datagen/ETBlockStateProvider.java +++ b/src/main/java/robaertschi/environmenttech/datagen/ETBlockStateProvider.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.datagen; diff --git a/src/main/java/robaertschi/environmenttech/datagen/ETDatagen.java b/src/main/java/robaertschi/environmenttech/datagen/ETDatagen.java index fad721a..04a4640 100644 --- a/src/main/java/robaertschi/environmenttech/datagen/ETDatagen.java +++ b/src/main/java/robaertschi/environmenttech/datagen/ETDatagen.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.datagen; diff --git a/src/main/java/robaertschi/environmenttech/datagen/ETItemModelProvider.java b/src/main/java/robaertschi/environmenttech/datagen/ETItemModelProvider.java index 76e864d..87c5654 100644 --- a/src/main/java/robaertschi/environmenttech/datagen/ETItemModelProvider.java +++ b/src/main/java/robaertschi/environmenttech/datagen/ETItemModelProvider.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.datagen; diff --git a/src/main/java/robaertschi/environmenttech/datagen/ETRecipeProvider.java b/src/main/java/robaertschi/environmenttech/datagen/ETRecipeProvider.java index 6bbf3bb..1e7f71c 100644 --- a/src/main/java/robaertschi/environmenttech/datagen/ETRecipeProvider.java +++ b/src/main/java/robaertschi/environmenttech/datagen/ETRecipeProvider.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.datagen; diff --git a/src/main/java/robaertschi/environmenttech/level/ETChunkEvents.java b/src/main/java/robaertschi/environmenttech/level/ETChunkEvents.java index 02491b6..99d2ac3 100644 --- a/src/main/java/robaertschi/environmenttech/level/ETChunkEvents.java +++ b/src/main/java/robaertschi/environmenttech/level/ETChunkEvents.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level; diff --git a/src/main/java/robaertschi/environmenttech/level/block/ETBlocks.java b/src/main/java/robaertschi/environmenttech/level/block/ETBlocks.java index d54c506..3c9dac0 100644 --- a/src/main/java/robaertschi/environmenttech/level/block/ETBlocks.java +++ b/src/main/java/robaertschi/environmenttech/level/block/ETBlocks.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.block; diff --git a/src/main/java/robaertschi/environmenttech/level/block/EnvCollectorBlock.java b/src/main/java/robaertschi/environmenttech/level/block/EnvCollectorBlock.java index 30f9f6c..ece0e8e 100644 --- a/src/main/java/robaertschi/environmenttech/level/block/EnvCollectorBlock.java +++ b/src/main/java/robaertschi/environmenttech/level/block/EnvCollectorBlock.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.block; diff --git a/src/main/java/robaertschi/environmenttech/level/block/EnvDistributorBlock.java b/src/main/java/robaertschi/environmenttech/level/block/EnvDistributorBlock.java index ab2c44f..87cda7f 100644 --- a/src/main/java/robaertschi/environmenttech/level/block/EnvDistributorBlock.java +++ b/src/main/java/robaertschi/environmenttech/level/block/EnvDistributorBlock.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.block; diff --git a/src/main/java/robaertschi/environmenttech/level/block/SimpleBlockWithEntity.java b/src/main/java/robaertschi/environmenttech/level/block/SimpleBlockWithEntity.java index 40fb9a6..0ef87ff 100644 --- a/src/main/java/robaertschi/environmenttech/level/block/SimpleBlockWithEntity.java +++ b/src/main/java/robaertschi/environmenttech/level/block/SimpleBlockWithEntity.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.block; diff --git a/src/main/java/robaertschi/environmenttech/level/block/entity/ETBlockEntities.java b/src/main/java/robaertschi/environmenttech/level/block/entity/ETBlockEntities.java index 178de78..cbd5967 100644 --- a/src/main/java/robaertschi/environmenttech/level/block/entity/ETBlockEntities.java +++ b/src/main/java/robaertschi/environmenttech/level/block/entity/ETBlockEntities.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.block.entity; diff --git a/src/main/java/robaertschi/environmenttech/level/block/entity/EnvCollectorBlockEntity.java b/src/main/java/robaertschi/environmenttech/level/block/entity/EnvCollectorBlockEntity.java index f19fe4c..48a471d 100644 --- a/src/main/java/robaertschi/environmenttech/level/block/entity/EnvCollectorBlockEntity.java +++ b/src/main/java/robaertschi/environmenttech/level/block/entity/EnvCollectorBlockEntity.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.block.entity; diff --git a/src/main/java/robaertschi/environmenttech/level/block/entity/EnvDistributorBlockEntity.java b/src/main/java/robaertschi/environmenttech/level/block/entity/EnvDistributorBlockEntity.java index 42a62d5..b8eaed9 100644 --- a/src/main/java/robaertschi/environmenttech/level/block/entity/EnvDistributorBlockEntity.java +++ b/src/main/java/robaertschi/environmenttech/level/block/entity/EnvDistributorBlockEntity.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.block.entity; diff --git a/src/main/java/robaertschi/environmenttech/level/block/entity/ITickableBlockEntity.java b/src/main/java/robaertschi/environmenttech/level/block/entity/ITickableBlockEntity.java index 0cc0acf..c5ec1bb 100644 --- a/src/main/java/robaertschi/environmenttech/level/block/entity/ITickableBlockEntity.java +++ b/src/main/java/robaertschi/environmenttech/level/block/entity/ITickableBlockEntity.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.block.entity; diff --git a/src/main/java/robaertschi/environmenttech/level/block/entity/renderer/EnvCollectorRenderer.java b/src/main/java/robaertschi/environmenttech/level/block/entity/renderer/EnvCollectorRenderer.java index 596b957..0f39be9 100644 --- a/src/main/java/robaertschi/environmenttech/level/block/entity/renderer/EnvCollectorRenderer.java +++ b/src/main/java/robaertschi/environmenttech/level/block/entity/renderer/EnvCollectorRenderer.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.block.entity.renderer; diff --git a/src/main/java/robaertschi/environmenttech/level/block/entity/renderer/EnvDistributorRenderer.java b/src/main/java/robaertschi/environmenttech/level/block/entity/renderer/EnvDistributorRenderer.java index cb39d34..f5e2cec 100644 --- a/src/main/java/robaertschi/environmenttech/level/block/entity/renderer/EnvDistributorRenderer.java +++ b/src/main/java/robaertschi/environmenttech/level/block/entity/renderer/EnvDistributorRenderer.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.block.entity.renderer; diff --git a/src/main/java/robaertschi/environmenttech/level/fluid/ETFluidTypes.java b/src/main/java/robaertschi/environmenttech/level/fluid/ETFluidTypes.java index 09227af..a5396f3 100644 --- a/src/main/java/robaertschi/environmenttech/level/fluid/ETFluidTypes.java +++ b/src/main/java/robaertschi/environmenttech/level/fluid/ETFluidTypes.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.fluid; diff --git a/src/main/java/robaertschi/environmenttech/level/fluid/ETFluids.java b/src/main/java/robaertschi/environmenttech/level/fluid/ETFluids.java index 264d6ef..3b42c0c 100644 --- a/src/main/java/robaertschi/environmenttech/level/fluid/ETFluids.java +++ b/src/main/java/robaertschi/environmenttech/level/fluid/ETFluids.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.fluid; diff --git a/src/main/java/robaertschi/environmenttech/level/item/ETItems.java b/src/main/java/robaertschi/environmenttech/level/item/ETItems.java index 5fcf6b1..82b6900 100644 --- a/src/main/java/robaertschi/environmenttech/level/item/ETItems.java +++ b/src/main/java/robaertschi/environmenttech/level/item/ETItems.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.item; diff --git a/src/main/java/robaertschi/environmenttech/level/item/EnvDetectorItem.java b/src/main/java/robaertschi/environmenttech/level/item/EnvDetectorItem.java index 10fa726..4e1fdb3 100644 --- a/src/main/java/robaertschi/environmenttech/level/item/EnvDetectorItem.java +++ b/src/main/java/robaertschi/environmenttech/level/item/EnvDetectorItem.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.item; diff --git a/src/main/java/robaertschi/environmenttech/level/particle/ETParticles.java b/src/main/java/robaertschi/environmenttech/level/particle/ETParticles.java index 6d3508d..2ec1d94 100644 --- a/src/main/java/robaertschi/environmenttech/level/particle/ETParticles.java +++ b/src/main/java/robaertschi/environmenttech/level/particle/ETParticles.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.particle; diff --git a/src/main/java/robaertschi/environmenttech/level/particle/EnvParticle.java b/src/main/java/robaertschi/environmenttech/level/particle/EnvParticle.java index bd74dac..a3566ef 100644 --- a/src/main/java/robaertschi/environmenttech/level/particle/EnvParticle.java +++ b/src/main/java/robaertschi/environmenttech/level/particle/EnvParticle.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.level.particle; diff --git a/src/main/java/robaertschi/environmenttech/menu/ETMenus.java b/src/main/java/robaertschi/environmenttech/menu/ETMenus.java index 3a4e56a..d4cab25 100644 --- a/src/main/java/robaertschi/environmenttech/menu/ETMenus.java +++ b/src/main/java/robaertschi/environmenttech/menu/ETMenus.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.menu; diff --git a/src/main/java/robaertschi/environmenttech/menu/EnvCollectorMenu.java b/src/main/java/robaertschi/environmenttech/menu/EnvCollectorMenu.java index 0a2d77e..81865d7 100644 --- a/src/main/java/robaertschi/environmenttech/menu/EnvCollectorMenu.java +++ b/src/main/java/robaertschi/environmenttech/menu/EnvCollectorMenu.java @@ -1,8 +1,18 @@ /* - * EnvironmentTech Copyright (C) 2024 Robin Bärtschi - * This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. - * This is free software, and you are welcome to redistribute it - * under certain conditions; read the LICENSE file at the root of the source code for details. + * EnvironmentTech MC Mod + Copyright (C) 2024 Robin Bärtschi and Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, by version 3 of the License. + + 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ package robaertschi.environmenttech.menu;