artifactId+version+packaging.JARfor example with the following details set in the pom:
<groupId>com.mycompany</groupId> <artifactId>testing-output-name</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>mule-application</packaging>This would output a file named:
testing-output-name-1.0.0-SNAPSHOT-mule-application.jarBut you wish to generate the file with a different or custom name.
<build>
<finalName>custom-final-name</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.mule.tools.maven</groupId>
<artifactId>mule-maven-plugin</artifactId>
<version>${mule.maven.plugin.version}</version>
<extensions>true</extensions>
...
This would generate a JAR file with the following name:
custom-final-name-mule-application.jarYou can also configure this with property placeholder values as needed:
<finalName>${artifactId}-${version}-${environment}</finalName>
001115219

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.