I've been stuck on this for quite some time now, but here's my issue:
I've been trying to make an build via the an Artifact, then run a Dev server with Intellij, but I just cannot figure out how to shade a dependency with this setup
Error: java.lang.NoClassDefFoundError: com/github/stefvanschie/inventoryframework/gui/type/HopperGui
Pom.xml:```xml
<...>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<...>
<dependency>
<groupId>com.github.stefvanschie.inventoryframework</groupId>
<artifactId>IF</artifactId>
<version>0.10.11</version>
<scope>compile</scope>
</dependency>
<...>
Artifact setup (img 1)
Modules (img 2)