Good afternoon, guys. Here's my question:
I'm creating a simple desktop application in Java 8 with swing in Intellij. At the end of some modifications I created an .jar executable and by that point everything was fine.
As of today I'm using an external library for audio playback called JLayer that runs perfectly in the application ( when I launch directly through Intellij IDE). But now that I'm going to generate an executable jar in the same way as always, when running the application (the jar executable) the sound player does not work.
The problem seems to be clear: I'm not exporting the external JLayer library that my application needs along with the jar I'm generating. Am I thinking right? And if so, how can I generate this executable in Intellij that packs also that library I need?