Jump to content

Using multi-module projects with ModContainer


DragonBorn

Recommended Posts

Hello, i have a multi-module project:

include ':core'

include ':tech'

include ':rpg'

Core module is a base version for all modules(how library, but it's independed mod). Tech/Rpg module is a child of Core.

 

Using in builds scripts:

tech -> build.gradle

    implementation project(':core')

rpg -> build.gradle

    implementation project(':core')

 

And i have KotlinAdapter(yes, it's a mod written on Kotlin language), spoiler: this adapter work for core, but when a execute Intellij Idea task for run tech module("tech runClient") i take a exception with error: "adapter.kotlin.KotlinModContainer cannot be cast to net.minecraftforge.fml.ModContainer". But, when execute runClient(gradle task) it's work without of exception. How to i can execute Intellij Idea task for run my Tech and Rpg mods with Core mod in dependencies?

 

When run Intellij task "tech runClient" threads:

"Loading KotlinModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@47148f3f - got sun.misc.Launcher$AppClassLoader@18b4aac2"

When run Gradle task ":tech:runClient" threads:

"Loading KotlinModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@47148f3f - got cpw.mods.modlauncher.TransformingClassLoader@47148f3f"

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.