I am very new to Maven and would like to see an example of how one uses the maven jar plugin. I already visited here but did not find any examples. On the documentation page, there were some parameters listed for this goal but what I was looking for is how one places them in the 'goal' or 'executions' tag. Thanks.
feedback
|
|
You usually don't use the jar plugin. If you set the packaging to jar, the goal jar:jar gets executed automatically. If you want to configure the jar plugin, do it like this:
(Example: exclude all xml files from the jar) There is no need to add any goal or execution blocks, a global configuration block is valid for all executions. Reference: | |||||
|
feedback
|
All maven plugins have usually a Usage page, so does the Maven JAR Plugin. But as pointed out by seanizer, it's unusual to invoke the Maven JAR Plugin directly, you don't really "use it directly", Maven does. Maven comes with a build lifecycle made of phases (e.g. For example, for a project with a The benefit of this approach is that regardless of the project type (
The Guide to Configuring Plug-ins explains the rules to configure any Maven plugin, which is done by specifying a In the particular case of the Maven JAR Plugin, a global | |||
|
feedback
|