I'm currently using the jar-with-dependencies assembly to create such a jar. However, the name of my jar is a bit long.
Since this jar is being used by RPG programs on an AS400, I'd like to shorten it to make life a bit easier for those developers. But, other than by hand, I've not found a way to rename the jar from the usual project-name-version-classifier-jar-with-dependencies.jar
. I'd like something like project-name-version-classifier-full.jar
Is there anyway to do this without basically copying the jar-with-dependencies assembly descriptor and calling it full?
Additionally, I want to continue to have the jar without the classpath assembled stored in the repository.
I need two artifacts. The jar with my classifier holding the region which the build is for. The jar with all dependencies which also includes the region.
project-name-version-region-full.jar
and project-name-version-region.jar
should be stored in the repository. In the first example the classifier is region-full, in the 2nd it's region. The latter is working.