Enable incrementals

Jenkins evaluation of pull request builds is faster and easier when incremental builds are enabled. See the jenkins.io incremental build instructions for more details.

Create a branch

Create a git branch for your local work with the command:

$ git checkout -b incrementalify master

Run the Maven command to enable incrementals:

$ mvn incrementals:incrementalify

Create a pull request

Commit that change:

$ git add pom.xml .mvn/
$ git commit -m "Publish incremental development artifacts"

Push the change to GitHub:

$ git push origin --set-upstream incrementalify
Total 0 (delta 0), reused 0 (delta 0), pack-reused 0
remote:
remote: Create a pull request for 'incrementalify' on GitHub by visiting:
remote: https://github.com/user/your-plugin/pull/new/incrementalify
remote:
To github.com:user/your-plugin.git
 * [new branch]      incrementalify -> incrementalify
Branch 'incrementalify' tracking remote branch 'incrementalify'.

Notice that the output of the command includes the URL, which can be used to open a pull request. Copy that URL in your web browser and submit a pull request.