Google has failed me and I can\'t find an answer even here on SO - relegating me to actually posting my first question here.
I\'m trying to get the command \"mvn ins
The install:install goal of the Maven Install Plugin has an optional createChecksum parameter that defaults to false
.
Either set it to true
on the command line (as documented in Creating Checksums):
mvn install -DcreateChecksum=true
Or in the plugin configuration:
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<createChecksum>true</createChecksum>
</configuration>
</plugin>