merge jars

This commit is contained in:
Xujiayao 2025-08-01 14:59:56 +08:00
parent 74b13d28e5
commit 0918946dfe
15 changed files with 83 additions and 251 deletions

View file

@ -5,7 +5,7 @@ plugins {
version = mod_version
base {
archivesName = mod_name + "-common"
archivesName = mod_name
}
dependencies {
@ -21,3 +21,43 @@ java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
//========== Merge JARs ==========
def otherSubprojects = rootProject.subprojects.findAll { it.name != project.name }
tasks.register('mergeJars') {
dependsOn otherSubprojects.collect { ":$it.name:jar" }
doLast {
def commonJar = tasks.jar.archiveFile.get().asFile
def tempDir = file("$buildDir/merged_temp")
tempDir.mkdirs()
def addedFiles = [:]
otherSubprojects.each { subproj ->
def jarFile = subproj.tasks.named('jar').get().archiveFile.get().asFile
copy {
from zipTree(jarFile)
into tempDir
exclude 'META-INF/MANIFEST.MF'
eachFile { fcd ->
def relPath = fcd.relativePath.toString()
if (addedFiles.containsKey(relPath)) {
logger.warn("Warning: Duplicate file found: $relPath in ${subproj.name} and ${addedFiles[relPath]}")
} else {
addedFiles[relPath] = subproj.name
}
}
}
}
// common jar
ant.zip(update: "true", destfile: commonJar) {
fileset(dir: tempDir)
}
// tempDir.deleteDir()
}
}
// mergeJars jar
tasks.named('assemble').configure {
dependsOn mergeJars
}

View file

@ -1,8 +1,12 @@
package com.xujiayao.discord_mc_chat.common;
public class Main {
public class DMCC {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
public static void init(String loader) {
System.out.println("Initializing DMCC with loader: " + loader);
}
}

View file

@ -9,6 +9,8 @@ base {
}
dependencies {
implementation project(":common")
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${minecraft_version}"
mappings loom.officialMojangMappings()

View file

@ -1,10 +1,12 @@
package com.xujiayao.discord_mc_chat.fabric;
import com.xujiayao.discord_mc_chat.common.DMCC;
import net.fabricmc.api.ModInitializer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class DiscordMCChat implements ModInitializer {
public class FabricDMCC implements ModInitializer {
public static final String MOD_ID = "discord_mc_chat";
// This logger is used to write text to the console and the log file.
@ -19,5 +21,7 @@ public class DiscordMCChat implements ModInitializer {
// Proceed with mild caution.
LOGGER.info("Hello Fabric world!");
DMCC.init("Fabric");
}
}

View file

@ -1,18 +0,0 @@
package com.xujiayao.discord_mc_chat.fabric.mixin;
import net.minecraft.server.MinecraftServer;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
import static com.xujiayao.discord_mc_chat.fabric.DiscordMCChat.LOGGER;
@Mixin(MinecraftServer.class)
public class ExampleMixin {
@Inject(at = @At("HEAD"), method = "loadLevel")
private void init(CallbackInfo info) {
// This code is injected into the start of MinecraftServer.loadLevel()V
LOGGER.info("This line is printed by an example mod mixin!");
}
}

View file

@ -1,14 +0,0 @@
{
"required": true,
"package": "com.xujiayao.discord_mc_chat.fabric.mixin",
"compatibilityLevel": "JAVA_21",
"mixins": [
"ExampleMixin"
],
"injectors": {
"defaultRequire": 1
},
"overwrites": {
"requireAnnotations": true
}
}

View file

@ -16,12 +16,10 @@
"environment": "*",
"entrypoints": {
"main": [
"com.xujiayao.discord_mc_chat.fabric.DiscordMCChat"
"com.xujiayao.discord_mc_chat.fabric.FabricDMCC"
]
},
"mixins": [
"discord_mc_chat.fabric.mixins.json"
],
"mixins": [],
"depends": {
"fabricloader": ">=0.16.14",
"minecraft": "~1.21.8",

View file

@ -17,6 +17,8 @@ neoForge {
}
dependencies {
implementation project(":common")
// Example optional mod dependency with JEI
// The JEI API is declared for compile time use, while the full JEI artifact is used at runtime
// compileOnly "mezz.jei:jei-${mc_version}-common-api:${jei_version}"

View file

@ -1,36 +0,0 @@
package com.xujiayao.discord_mc_chat.neoforge;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.resources.ResourceLocation;
import net.neoforged.neoforge.common.ModConfigSpec;
import java.util.List;
// An example config class. This is not required, but it's a good idea to have one to keep your config organized.
// Demonstrates how to use Neo's config APIs
public class Config {
private static final ModConfigSpec.Builder BUILDER = new ModConfigSpec.Builder();
public static final ModConfigSpec.BooleanValue LOG_DIRT_BLOCK = BUILDER
.comment("Whether to log the dirt block on common setup")
.define("logDirtBlock", true);
public static final ModConfigSpec.IntValue MAGIC_NUMBER = BUILDER
.comment("A magic number")
.defineInRange("magicNumber", 42, 0, Integer.MAX_VALUE);
public static final ModConfigSpec.ConfigValue<String> MAGIC_NUMBER_INTRODUCTION = BUILDER
.comment("What you want the introduction message to be for the magic number")
.define("magicNumberIntroduction", "The magic number is... ");
// a list of strings that are treated as resource locations for items
public static final ModConfigSpec.ConfigValue<List<? extends String>> ITEM_STRINGS = BUILDER
.comment("A list of items to log on common setup.")
.defineListAllowEmpty("items", List.of("minecraft:iron_ingot"), () -> "", Config::validateItemName);
static final ModConfigSpec SPEC = BUILDER.build();
private static boolean validateItemName(final Object obj) {
return obj instanceof String itemName && BuiltInRegistries.ITEM.containsKey(ResourceLocation.parse(itemName));
}
}

View file

@ -1,111 +0,0 @@
package com.xujiayao.discord_mc_chat.neoforge;
import com.mojang.logging.LogUtils;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.core.registries.Registries;
import net.minecraft.network.chat.Component;
import net.minecraft.world.food.FoodProperties;
import net.minecraft.world.item.BlockItem;
import net.minecraft.world.item.CreativeModeTab;
import net.minecraft.world.item.CreativeModeTabs;
import net.minecraft.world.item.Item;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.Blocks;
import net.minecraft.world.level.block.state.BlockBehaviour;
import net.minecraft.world.level.material.MapColor;
import net.neoforged.bus.api.IEventBus;
import net.neoforged.bus.api.SubscribeEvent;
import net.neoforged.fml.ModContainer;
import net.neoforged.fml.common.Mod;
import net.neoforged.fml.config.ModConfig;
import net.neoforged.fml.event.lifecycle.FMLCommonSetupEvent;
import net.neoforged.neoforge.common.NeoForge;
import net.neoforged.neoforge.event.BuildCreativeModeTabContentsEvent;
import net.neoforged.neoforge.event.server.ServerStartingEvent;
import net.neoforged.neoforge.registries.DeferredBlock;
import net.neoforged.neoforge.registries.DeferredHolder;
import net.neoforged.neoforge.registries.DeferredItem;
import net.neoforged.neoforge.registries.DeferredRegister;
import org.slf4j.Logger;
// The value here should match an entry in the META-INF/neoforge.mods.toml file
@Mod(DiscordMCChat.MODID)
public class DiscordMCChat {
// Define mod id in a common place for everything to reference
public static final String MODID = "discord_mc_chat";
// Directly reference a slf4j logger
public static final Logger LOGGER = LogUtils.getLogger();
// Create a Deferred Register to hold Blocks which will all be registered under the "discord_mc_chat" namespace
public static final DeferredRegister.Blocks BLOCKS = DeferredRegister.createBlocks(MODID);
// Creates a new Block with the id "discord_mc_chat:example_block", combining the namespace and path
public static final DeferredBlock<Block> EXAMPLE_BLOCK = BLOCKS.registerSimpleBlock("example_block", BlockBehaviour.Properties.of().mapColor(MapColor.STONE));
// Create a Deferred Register to hold Items which will all be registered under the "discord_mc_chat" namespace
public static final DeferredRegister.Items ITEMS = DeferredRegister.createItems(MODID);
// Creates a new BlockItem with the id "discord_mc_chat:example_block", combining the namespace and path
public static final DeferredItem<BlockItem> EXAMPLE_BLOCK_ITEM = ITEMS.registerSimpleBlockItem("example_block", EXAMPLE_BLOCK);
// Creates a new food item with the id "discord_mc_chat:example_id", nutrition 1 and saturation 2
public static final DeferredItem<Item> EXAMPLE_ITEM = ITEMS.registerSimpleItem("example_item", new Item.Properties().food(new FoodProperties.Builder()
.alwaysEdible().nutrition(1).saturationModifier(2f).build()));
// Create a Deferred Register to hold CreativeModeTabs which will all be registered under the "discord_mc_chat" namespace
public static final DeferredRegister<CreativeModeTab> CREATIVE_MODE_TABS = DeferredRegister.create(Registries.CREATIVE_MODE_TAB, MODID);
// Creates a creative tab with the id "discord_mc_chat:example_tab" for the example item, that is placed after the combat tab
public static final DeferredHolder<CreativeModeTab, CreativeModeTab> EXAMPLE_TAB = CREATIVE_MODE_TABS.register("example_tab", () -> CreativeModeTab.builder()
.title(Component.translatable("itemGroup.discord_mc_chat")) //The language key for the title of your CreativeModeTab
.withTabsBefore(CreativeModeTabs.COMBAT)
.icon(() -> EXAMPLE_ITEM.get().getDefaultInstance())
.displayItems((parameters, output) -> {
output.accept(EXAMPLE_ITEM.get()); // Add the example item to the tab. For your own tabs, this method is preferred over the event
}).build());
// The constructor for the mod class is the first code that is run when your mod is loaded.
// FML will recognize some parameter types like IEventBus or ModContainer and pass them in automatically.
public DiscordMCChat(IEventBus modEventBus, ModContainer modContainer) {
// Register the commonSetup method for modloading
modEventBus.addListener(this::commonSetup);
// Register the Deferred Register to the mod event bus so blocks get registered
BLOCKS.register(modEventBus);
// Register the Deferred Register to the mod event bus so items get registered
ITEMS.register(modEventBus);
// Register the Deferred Register to the mod event bus so tabs get registered
CREATIVE_MODE_TABS.register(modEventBus);
// Register ourselves for server and other game events we are interested in.
// Note that this is necessary if and only if we want *this* class (DiscordMCChat) to respond directly to events.
// Do not add this line if there are no @SubscribeEvent-annotated functions in this class, like onServerStarting() below.
NeoForge.EVENT_BUS.register(this);
// Register the item to a creative tab
modEventBus.addListener(this::addCreative);
// Register our mod's ModConfigSpec so that FML can create and load the config file for us
modContainer.registerConfig(ModConfig.Type.COMMON, Config.SPEC);
}
private void commonSetup(FMLCommonSetupEvent event) {
// Some common setup code
LOGGER.info("HELLO FROM COMMON SETUP");
if (Config.LOG_DIRT_BLOCK.getAsBoolean()) {
LOGGER.info("DIRT BLOCK >> {}", BuiltInRegistries.BLOCK.getKey(Blocks.DIRT));
}
LOGGER.info("{}{}", Config.MAGIC_NUMBER_INTRODUCTION.get(), Config.MAGIC_NUMBER.getAsInt());
Config.ITEM_STRINGS.get().forEach((item) -> LOGGER.info("ITEM >> {}", item));
}
// Add the example block item to the building blocks tab
private void addCreative(BuildCreativeModeTabContentsEvent event) {
if (event.getTabKey() == CreativeModeTabs.BUILDING_BLOCKS) {
event.accept(EXAMPLE_BLOCK_ITEM);
}
}
// You can use SubscribeEvent and let the Event Bus discover methods to call
@SubscribeEvent
public void onServerStarting(ServerStartingEvent event) {
// Do something when the server starts
LOGGER.info("HELLO from server starting");
}
}

View file

@ -1,31 +0,0 @@
package com.xujiayao.discord_mc_chat.neoforge;
import net.minecraft.client.Minecraft;
import net.neoforged.api.distmarker.Dist;
import net.neoforged.bus.api.SubscribeEvent;
import net.neoforged.fml.ModContainer;
import net.neoforged.fml.common.EventBusSubscriber;
import net.neoforged.fml.common.Mod;
import net.neoforged.fml.event.lifecycle.FMLClientSetupEvent;
import net.neoforged.neoforge.client.gui.ConfigurationScreen;
import net.neoforged.neoforge.client.gui.IConfigScreenFactory;
// This class will not load on dedicated servers. Accessing client side code from here is safe.
@Mod(value = DiscordMCChat.MODID, dist = Dist.CLIENT)
// You can use EventBusSubscriber to automatically register all static methods in the class annotated with @SubscribeEvent
@EventBusSubscriber(modid = DiscordMCChat.MODID, value = Dist.CLIENT)
public class DiscordMCChatClient {
public DiscordMCChatClient(ModContainer container) {
// Allows NeoForge to create a config screen for this mod's configs.
// The config screen is accessed by going to the Mods screen > clicking on your mod > clicking on config.
// Do not forget to add translations for your config options to the en_us.json file.
container.registerExtensionPoint(IConfigScreenFactory.class, ConfigurationScreen::new);
}
@SubscribeEvent
static void onClientSetup(FMLClientSetupEvent event) {
// Some client setup code
DiscordMCChat.LOGGER.info("HELLO FROM CLIENT SETUP");
DiscordMCChat.LOGGER.info("MINECRAFT NAME >> {}", Minecraft.getInstance().getUser().getName());
}
}

View file

@ -0,0 +1,24 @@
package com.xujiayao.discord_mc_chat.neoforge;
import com.xujiayao.discord_mc_chat.common.DMCC;
import net.neoforged.fml.common.Mod;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
// The value here should match an entry in the META-INF/neoforge.mods.toml file
@Mod(NeoForgeDMCC.MOD_ID)
public class NeoForgeDMCC {
// Define mod id in a common place for everything to reference
public static final String MOD_ID = "discord_mc_chat";
// Directly reference a slf4j logger
public static final Logger LOGGER = LoggerFactory.getLogger(MOD_ID);
// The constructor for the mod class is the first code that is run when your mod is loaded.
// FML will recognize some parameter types like IEventBus or ModContainer and pass them in automatically.
public NeoForgeDMCC() {
LOGGER.info("Hello NeoForge world!");
DMCC.init("NeoForge");
}
}

View file

@ -1,18 +0,0 @@
package com.xujiayao.discord_mc_chat.neoforge.mixin;
import net.minecraft.server.MinecraftServer;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
import static com.xujiayao.discord_mc_chat.neoforge.DiscordMCChat.LOGGER;
@Mixin(MinecraftServer.class)
public class ExampleMixin {
@Inject(at = @At("HEAD"), method = "loadLevel")
private void init(CallbackInfo info) {
// This code is injected into the start of MinecraftServer.loadLevel()V
LOGGER.info("This line is printed by an example mod mixin!");
}
}

View file

@ -42,8 +42,8 @@ authors = "Xujiayao" #optional
description = '''Discord-MC-Chat (DMCC), formerly known as MC-Discord-Chat and MCDiscordChat (MCDC), is a practical and powerful Fabric and Quilt Minecraft <> Discord chat bridge inspired by BRForgers/DisFabric'''
# The [[mixins]] block allows you to declare your mixin config to FML so that it gets loaded.
[[mixins]]
config = "discord_mc_chat.neoforge.mixins.json"
# [[mixins]]
# config = "discord_mc_chat.neoforge.mixins.json"
# The [[accessTransformers]] block allows you to declare where your AT file is.
# If this block is omitted, a fallback attempt will be made to load an AT from META-INF/accesstransformer.cfg

View file

@ -1,14 +0,0 @@
{
"required": true,
"package": "com.xujiayao.discord_mc_chat.neoforge.mixin",
"compatibilityLevel": "JAVA_21",
"mixins": [
"ExampleMixin"
],
"injectors": {
"defaultRequire": 1
},
"overwrites": {
"requireAnnotations": true
}
}