I am trying to get a splash screen in my project. In eclipses I have found a solution to put
VM arguments -splash:src/main/resources/images/cover.png But where do i put this arguments while running a project through maven command line.
I am trying to get a splash screen in my project. In eclipses I
Share
exec:javaruns the application in the same Java process as Maven so a JVM splash screen is not possible.If you use
exec:execyou can start a separate Java process and provide arguments to this in the plugin configuration, e.g.: