I use maven and I'm getting my jar from building an artifact, and I'm in a need of jar file to looking like "app-1.0.0.jar"
how can I do this?
thank you!
I use maven and I'm getting my jar from building an artifact, and I'm in a need of jar file to looking like "app-1.0.0.jar"
how can I do this?
thank you!
The version of the artifact has a dedicated element in the pom.xml file. In your case use this:
<artifactId>app</artifactId>
<packaging>jar</packaging>
<version>1.0.0</version>