so i ended up restructuring my project to do one s...
# scripting
n
so i ended up restructuring my project to do one set of dependencies at a time and shadowJar them into a fat-jar that executes the program
s
I create a temp fat-jar with the compilation output and add to the classpath of next compilation but is not work unfortunately https://github.com/DevSrSouza/Bukkript/blob/master/host/src/main/kotlin/br/com/devsrsouza/bukkript/host/Host.kt#L191
n
a jar is a java archive, you cannot just rename some file containing serialized bytecode into a jar and expect it to work
what you will most likely need to do is add the dependencies you need to the build.gradle of either your project or the consuming project
i simplify that with a gradle plugin that handled creatign a shadowjar and launching it in the correct way