diff --git a/build.gradle.kts b/build.gradle.kts index 03ae22b..d297731 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -191,7 +191,15 @@ tasks.withType { // Configure the maven publication publishing { - publications { } + publications { + create("maven") { + groupId = mavenGroup + artifactId = modId + version = modVersion + + from(components["java"]) + } + } // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. repositories { @@ -199,5 +207,12 @@ publishing { // Notice: This block does NOT have the same function as the block in the top level. // The repositories here will be used for publishing your artifact, not for // retrieving dependencies. + maven { + url = uri("https://maven.muonmc.org/releases") + credentials { + username = System.getenv("MAVEN_USERNAME") + password = System.getenv("MAVEN_PASSWORD") + } + } } } diff --git a/src/main/java/gay/sylv/weird_wares/api/GlintData.java b/src/main/java/gay/sylv/weird_wares/api/GlintData.java index 27f878a..a0f2e8d 100644 --- a/src/main/java/gay/sylv/weird_wares/api/GlintData.java +++ b/src/main/java/gay/sylv/weird_wares/api/GlintData.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.api; import gay.sylv.weird_wares.impl.DataAttachments; diff --git a/src/main/java/gay/sylv/weird_wares/impl/Components.java b/src/main/java/gay/sylv/weird_wares/impl/Components.java index 8cced39..2a66425 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/Components.java +++ b/src/main/java/gay/sylv/weird_wares/impl/Components.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl; import gay.sylv.weird_wares.impl.util.Initializable; diff --git a/src/main/java/gay/sylv/weird_wares/impl/DataAttachments.java b/src/main/java/gay/sylv/weird_wares/impl/DataAttachments.java index 2b28417..7341d80 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/DataAttachments.java +++ b/src/main/java/gay/sylv/weird_wares/impl/DataAttachments.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl; import gay.sylv.weird_wares.impl.util.Codecs; diff --git a/src/main/java/gay/sylv/weird_wares/impl/LootTables.java b/src/main/java/gay/sylv/weird_wares/impl/LootTables.java index b998187..7ff1306 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/LootTables.java +++ b/src/main/java/gay/sylv/weird_wares/impl/LootTables.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl; import gay.sylv.weird_wares.impl.util.Initializable; diff --git a/src/main/java/gay/sylv/weird_wares/impl/Main.java b/src/main/java/gay/sylv/weird_wares/impl/Main.java index 3581f64..bf66a24 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/Main.java +++ b/src/main/java/gay/sylv/weird_wares/impl/Main.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl; import gay.sylv.weird_wares.impl.block.Blocks; diff --git a/src/main/java/gay/sylv/weird_wares/impl/block/BlockHolder.java b/src/main/java/gay/sylv/weird_wares/impl/block/BlockHolder.java index 2b89564..4725cb6 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/block/BlockHolder.java +++ b/src/main/java/gay/sylv/weird_wares/impl/block/BlockHolder.java @@ -1,19 +1,9 @@ /** - * World In a Jar - * Copyright (C) 2024 VulpixelMC + * Copyright (c) 2024 Vulpixel *

- * 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, 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 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 . + * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. */ package gay.sylv.weird_wares.impl.block; diff --git a/src/main/java/gay/sylv/weird_wares/impl/block/Blocks.java b/src/main/java/gay/sylv/weird_wares/impl/block/Blocks.java index a3caa8c..a50f8d6 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/block/Blocks.java +++ b/src/main/java/gay/sylv/weird_wares/impl/block/Blocks.java @@ -1,19 +1,9 @@ /** - * World In a Jar - * Copyright (C) 2024 VulpixelMC + * Copyright (c) 2024 Vulpixel *

- * 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, 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 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 . + * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. */ package gay.sylv.weird_wares.impl.block; diff --git a/src/main/java/gay/sylv/weird_wares/impl/block/NetherReactorBlock.java b/src/main/java/gay/sylv/weird_wares/impl/block/NetherReactorBlock.java index 28a56d9..adc8c7a 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/block/NetherReactorBlock.java +++ b/src/main/java/gay/sylv/weird_wares/impl/block/NetherReactorBlock.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.block; import com.mojang.serialization.MapCodec; diff --git a/src/main/java/gay/sylv/weird_wares/impl/block/entity/type/BlockEntityHolder.java b/src/main/java/gay/sylv/weird_wares/impl/block/entity/type/BlockEntityHolder.java index 8fdeb21..94e29a7 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/block/entity/type/BlockEntityHolder.java +++ b/src/main/java/gay/sylv/weird_wares/impl/block/entity/type/BlockEntityHolder.java @@ -1,19 +1,9 @@ /** - * World In a Jar - * Copyright (C) 2024 VulpixelMC + * Copyright (c) 2024 Vulpixel *

- * 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, 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 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 . + * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. */ package gay.sylv.weird_wares.impl.block.entity.type; diff --git a/src/main/java/gay/sylv/weird_wares/impl/client/MainClient.java b/src/main/java/gay/sylv/weird_wares/impl/client/MainClient.java index f97bbf4..a4dc2dc 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/client/MainClient.java +++ b/src/main/java/gay/sylv/weird_wares/impl/client/MainClient.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.client; import gay.sylv.weird_wares.impl.DataAttachments; diff --git a/src/main/java/gay/sylv/weird_wares/impl/client/render/Rendering.java b/src/main/java/gay/sylv/weird_wares/impl/client/render/Rendering.java index 4d8c988..8752087 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/client/render/Rendering.java +++ b/src/main/java/gay/sylv/weird_wares/impl/client/render/Rendering.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.client.render; import com.mojang.blaze3d.shaders.Uniform; diff --git a/src/main/java/gay/sylv/weird_wares/impl/compat/client/SodiumCompatibility.java b/src/main/java/gay/sylv/weird_wares/impl/compat/client/SodiumCompatibility.java index 0ff3759..dcfe087 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/compat/client/SodiumCompatibility.java +++ b/src/main/java/gay/sylv/weird_wares/impl/compat/client/SodiumCompatibility.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.compat.client; import gay.sylv.weird_wares.impl.duck.Accessor_LevelRenderer; diff --git a/src/main/java/gay/sylv/weird_wares/impl/datagen/DataGenerators.java b/src/main/java/gay/sylv/weird_wares/impl/datagen/DataGenerators.java index 8f5af91..e50e30a 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/datagen/DataGenerators.java +++ b/src/main/java/gay/sylv/weird_wares/impl/datagen/DataGenerators.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.datagen; import gay.sylv.weird_wares.impl.block.Blocks; diff --git a/src/main/java/gay/sylv/weird_wares/impl/duck/Accessor_BufferBuilder.java b/src/main/java/gay/sylv/weird_wares/impl/duck/Accessor_BufferBuilder.java index 9463965..feff0e9 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/duck/Accessor_BufferBuilder.java +++ b/src/main/java/gay/sylv/weird_wares/impl/duck/Accessor_BufferBuilder.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.duck; @org.jetbrains.annotations.ApiStatus.Internal diff --git a/src/main/java/gay/sylv/weird_wares/impl/duck/Accessor_LevelRenderer.java b/src/main/java/gay/sylv/weird_wares/impl/duck/Accessor_LevelRenderer.java index f74b293..7726d61 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/duck/Accessor_LevelRenderer.java +++ b/src/main/java/gay/sylv/weird_wares/impl/duck/Accessor_LevelRenderer.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.duck; import it.unimi.dsi.fastutil.objects.ObjectArrayList; diff --git a/src/main/java/gay/sylv/weird_wares/impl/entity/Entities.java b/src/main/java/gay/sylv/weird_wares/impl/entity/Entities.java index e4b21c9..41859b1 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/entity/Entities.java +++ b/src/main/java/gay/sylv/weird_wares/impl/entity/Entities.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.entity; import gay.sylv.weird_wares.impl.util.Initializable; diff --git a/src/main/java/gay/sylv/weird_wares/impl/item/GlitterItem.java b/src/main/java/gay/sylv/weird_wares/impl/item/GlitterItem.java index c6837ff..e8275d8 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/item/GlitterItem.java +++ b/src/main/java/gay/sylv/weird_wares/impl/item/GlitterItem.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.item; import gay.sylv.weird_wares.impl.DataAttachments; diff --git a/src/main/java/gay/sylv/weird_wares/impl/item/Items.java b/src/main/java/gay/sylv/weird_wares/impl/item/Items.java index 680a848..e3a82a9 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/item/Items.java +++ b/src/main/java/gay/sylv/weird_wares/impl/item/Items.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.item; import gay.sylv.weird_wares.impl.util.Initializable; diff --git a/src/main/java/gay/sylv/weird_wares/impl/item/group/CreativeModeTabHolder.java b/src/main/java/gay/sylv/weird_wares/impl/item/group/CreativeModeTabHolder.java index fc4e05f..193c008 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/item/group/CreativeModeTabHolder.java +++ b/src/main/java/gay/sylv/weird_wares/impl/item/group/CreativeModeTabHolder.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.item.group; import net.minecraft.resources.ResourceKey; diff --git a/src/main/java/gay/sylv/weird_wares/impl/item/group/CreativeModeTabs.java b/src/main/java/gay/sylv/weird_wares/impl/item/group/CreativeModeTabs.java index ad05a6f..abd8332 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/item/group/CreativeModeTabs.java +++ b/src/main/java/gay/sylv/weird_wares/impl/item/group/CreativeModeTabs.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.item.group; import gay.sylv.weird_wares.impl.block.Blocks; diff --git a/src/main/java/gay/sylv/weird_wares/impl/network/Networking.java b/src/main/java/gay/sylv/weird_wares/impl/network/Networking.java index a8cf99b..84b7d13 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/network/Networking.java +++ b/src/main/java/gay/sylv/weird_wares/impl/network/Networking.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.network; import gay.sylv.weird_wares.impl.network.client.RequestGlintSyncPayload; diff --git a/src/main/java/gay/sylv/weird_wares/impl/network/client/ClientPackets.java b/src/main/java/gay/sylv/weird_wares/impl/network/client/ClientPackets.java index 15d6d1e..2d5135a 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/network/client/ClientPackets.java +++ b/src/main/java/gay/sylv/weird_wares/impl/network/client/ClientPackets.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.network.client; import gay.sylv.weird_wares.impl.DataAttachments; diff --git a/src/main/java/gay/sylv/weird_wares/impl/network/client/RequestGlintSyncPayload.java b/src/main/java/gay/sylv/weird_wares/impl/network/client/RequestGlintSyncPayload.java index 1e18d87..c1ac16d 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/network/client/RequestGlintSyncPayload.java +++ b/src/main/java/gay/sylv/weird_wares/impl/network/client/RequestGlintSyncPayload.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.network.client; import gay.sylv.weird_wares.impl.network.Networking; diff --git a/src/main/java/gay/sylv/weird_wares/impl/network/server/ServerPackets.java b/src/main/java/gay/sylv/weird_wares/impl/network/server/ServerPackets.java index f2051c7..32d3239 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/network/server/ServerPackets.java +++ b/src/main/java/gay/sylv/weird_wares/impl/network/server/ServerPackets.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.network.server; import gay.sylv.weird_wares.impl.DataAttachments; diff --git a/src/main/java/gay/sylv/weird_wares/impl/network/server/SyncGlintPayload.java b/src/main/java/gay/sylv/weird_wares/impl/network/server/SyncGlintPayload.java index a842e65..7e726ac 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/network/server/SyncGlintPayload.java +++ b/src/main/java/gay/sylv/weird_wares/impl/network/server/SyncGlintPayload.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.network.server; import gay.sylv.weird_wares.impl.network.Networking; diff --git a/src/main/java/gay/sylv/weird_wares/impl/util/BlockFlags.java b/src/main/java/gay/sylv/weird_wares/impl/util/BlockFlags.java index 1f13b32..ab94ca4 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/util/BlockFlags.java +++ b/src/main/java/gay/sylv/weird_wares/impl/util/BlockFlags.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.util; @org.jetbrains.annotations.ApiStatus.Internal diff --git a/src/main/java/gay/sylv/weird_wares/impl/util/Codecs.java b/src/main/java/gay/sylv/weird_wares/impl/util/Codecs.java index fb6f1eb..be8a1cf 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/util/Codecs.java +++ b/src/main/java/gay/sylv/weird_wares/impl/util/Codecs.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.util; import com.mojang.serialization.Codec; diff --git a/src/main/java/gay/sylv/weird_wares/impl/util/Constants.java b/src/main/java/gay/sylv/weird_wares/impl/util/Constants.java index 361c6b5..d1b3073 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/util/Constants.java +++ b/src/main/java/gay/sylv/weird_wares/impl/util/Constants.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.util; import net.fabricmc.api.EnvType; diff --git a/src/main/java/gay/sylv/weird_wares/impl/util/Conversions.java b/src/main/java/gay/sylv/weird_wares/impl/util/Conversions.java index 62534e0..df9c3ea 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/util/Conversions.java +++ b/src/main/java/gay/sylv/weird_wares/impl/util/Conversions.java @@ -1,19 +1,9 @@ /** - * World In a Jar - * Copyright (C) 2024 VulpixelMC + * Copyright (c) 2024 Vulpixel *

- * 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, 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 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 . + * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. */ package gay.sylv.weird_wares.impl.util; diff --git a/src/main/java/gay/sylv/weird_wares/impl/util/Functional.java b/src/main/java/gay/sylv/weird_wares/impl/util/Functional.java index 418d81c..654aeed 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/util/Functional.java +++ b/src/main/java/gay/sylv/weird_wares/impl/util/Functional.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.util; import java.lang.reflect.Field; diff --git a/src/main/java/gay/sylv/weird_wares/impl/util/ImmutablePair.java b/src/main/java/gay/sylv/weird_wares/impl/util/ImmutablePair.java index 32db0d4..a16ef91 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/util/ImmutablePair.java +++ b/src/main/java/gay/sylv/weird_wares/impl/util/ImmutablePair.java @@ -1,19 +1,9 @@ /** - * World In a Jar - * Copyright (C) 2024 VulpixelMC + * Copyright (c) 2024 Vulpixel *

- * 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, 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 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 . + * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. */ package gay.sylv.weird_wares.impl.util; diff --git a/src/main/java/gay/sylv/weird_wares/impl/util/Initializable.java b/src/main/java/gay/sylv/weird_wares/impl/util/Initializable.java index aad5924..ca28a88 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/util/Initializable.java +++ b/src/main/java/gay/sylv/weird_wares/impl/util/Initializable.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.impl.util; @org.jetbrains.annotations.ApiStatus.Internal diff --git a/src/main/java/gay/sylv/weird_wares/impl/util/Pair.java b/src/main/java/gay/sylv/weird_wares/impl/util/Pair.java index 8a3d80a..bdafc5b 100644 --- a/src/main/java/gay/sylv/weird_wares/impl/util/Pair.java +++ b/src/main/java/gay/sylv/weird_wares/impl/util/Pair.java @@ -1,19 +1,9 @@ /** - * World In a Jar - * Copyright (C) 2024 VulpixelMC + * Copyright (c) 2024 Vulpixel *

- * 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, 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 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 . + * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. */ package gay.sylv.weird_wares.impl.util; diff --git a/src/main/java/gay/sylv/weird_wares/mixin/client/Mixin_BufferBuilder.java b/src/main/java/gay/sylv/weird_wares/mixin/client/Mixin_BufferBuilder.java index 986a20c..c512920 100644 --- a/src/main/java/gay/sylv/weird_wares/mixin/client/Mixin_BufferBuilder.java +++ b/src/main/java/gay/sylv/weird_wares/mixin/client/Mixin_BufferBuilder.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.mixin.client; import com.mojang.blaze3d.vertex.BufferBuilder; diff --git a/src/main/java/gay/sylv/weird_wares/mixin/client/Mixin_LevelRenderer.java b/src/main/java/gay/sylv/weird_wares/mixin/client/Mixin_LevelRenderer.java index 2da36da..9f25248 100644 --- a/src/main/java/gay/sylv/weird_wares/mixin/client/Mixin_LevelRenderer.java +++ b/src/main/java/gay/sylv/weird_wares/mixin/client/Mixin_LevelRenderer.java @@ -1,3 +1,10 @@ +/** + * Copyright (c) 2024 Vulpixel + *

+ * For more information, read the LICENSE file in the project root. + * You should have received a copy of the Lambda License with The Software. + * If not, visit {@link https://sylv.gay/licenses/lambda}. + */ package gay.sylv.weird_wares.mixin.client; import gay.sylv.weird_wares.impl.duck.Accessor_LevelRenderer;