I am developing a software using Spring Framework. I use some external libraries and add them to the jar by declaring them in the pom.xml file as system scope dependencies.
When spring-boot-maven-plugin add them into the executable jar, it changes the libraries' original names. It actually adds the version info at the end of the file names.
For example;
Original name: gdal.jar Name in executable jar: gdal-1.0.jar
I don't want the spring-boot-maven-plugin to add version info to the file name.
Could you please help me with this issue?
Sincerely,