Usage - override maven properties
The simplest way to configure usage of JLupin Maven plugin is to override maven properties. To do so just add <properties>
tag and set property you want like shown below:
<properties>
<jlupin.deploy.skip>true</jlupin.deploy.skip>
<jlupin.repackage.output.fileName>${project.artifactId}-${project.version}.${project.packaging}
</jlupin.repackage.output.fileName>
</properties>
Above example will skip execution of deploy command and change name of fat jar generated by plugin.