maven-hpi-plugin
maven-hpi-plugin copied to clipboard
Maven plugin for building Jenkins plugins
Maven HPI Plugin
Maven plugin to build Jenkins plugins. See the developer guide for details.
Changelog
Newer versions
See GitHub Releases
Older versions
See archive.
For maintainers
mvn -Prun-its clean install
# Find some plugin using the 2.x parent POM and run:
mvn -f ../some-plugin -Dhpi-plugin.version=2.XXX-SNAPSHOT -DskipTests -DjenkinsHome=/tmp/sanity-check-maven-hpi-plugin clean package hpi:run
You can also rerun one test:
mvn -Prun-its mrm:start invoker:run mrm:stop -Dinvoker.test=parent-3x
To rerun just the verification script:
groovy -e "basedir='$(pwd)/target/its/parent-3x'; evaluate new File('src/it/parent-3x/verify.groovy')"
Also make sure project.parent.version
in src/it/parent-3x/pom.xml
is the latest.
Updating Jetty
hpi:run
mojo is a variant of jetty:run
mojo, and because of the way plugin descriptor is generated, this module copies some code from Jetty Maven plugin, specifically AbstractJettyMojo.java
and ConsoleScanner.java
.
To keep upstream tracking easier, pristine copies of these files are copied into incoming-x.y
branch, then package renamed. This version specific incoming branch is then "theirs" merged into the incoming
branch, which acts as the upstream tracking branch.
This branch is then merged into master
via git merge -X ignore-space-at-eol incoming
. See diff between incoming
and master
on these files to see the exact local patches.