IntelliJ - How to set the default jar file name in artifact -
each 1 of modules has same version in pom files:
<version>1.0-snapshot</version>
i artifact strip version part when exploding folders tomcat application.
i know can rename them manually:
but have every time deploy application.
does know if there way around this, keep jar names in artifact default?
you can set name of jar file configuration of maven jar plugin:
<plugin> <groupid>org.apache.maven.plugins</groupid> <artifactid>maven-jar-plugin</artifactid> <version>2.6</version> <configuration> <finalname>yourname</finalname> </configuration> </plugin>
for more details, have @ docs.
Comments
Post a Comment