install:install

Full name:

org.apache.maven.plugins:maven-install-plugin:2.4:install

Description:

Installs the project's main artifact, and any other artifacts attached by other plugins in the lifecycle, to the local repository.

Attributes:

  • Requires a Maven project to be executed.
  • The goal is thread-safe and supports parallel builds.
  • Binds by default to the lifecycle phase: install.

Required Parameters

Name Type Since Description
skip boolean 2.4 Set this to true to bypass artifact installation. Use this for artifacts that does not need to be installed in the local repository.
Default value is: false.
User property is: maven.install.skip.

Optional Parameters

Name Type Since Description
createChecksum boolean 2.2 Flag whether to create checksums (MD5, SHA-1) or not.
Default value is: false.
User property is: createChecksum.
updateReleaseInfo boolean - Whether to update the metadata to make the artifact a release version.
Default value is: false.
User property is: updateReleaseInfo.

Parameter Details

createChecksum:

Flag whether to create checksums (MD5, SHA-1) or not.
  • Type: boolean
  • Since: 2.2
  • Required: No
  • User Property: createChecksum
  • Default: false

skip:

Set this to true to bypass artifact installation. Use this for artifacts that does not need to be installed in the local repository.
  • Type: boolean
  • Since: 2.4
  • Required: Yes
  • User Property: maven.install.skip
  • Default: false

updateReleaseInfo:

Whether to update the metadata to make the artifact a release version.
  • Type: boolean
  • Required: No
  • User Property: updateReleaseInfo
  • Default: false