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.

intellij

i know can rename them manually:

intellij rename

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

Popular posts from this blog

Magento/PHP - Get phones on all members in a customer group -

php - .htaccess mod_rewrite for dynamic url which has domain names -

Website Login Issue developed in magento -