Skip to content

Latest commit

 

History

History
27 lines (12 loc) · 1.62 KB

development.md

File metadata and controls

27 lines (12 loc) · 1.62 KB

Update orchestra interface

To refresh WSDL from local orchestra installation:

  • mvn -Pfetch-wsdl -Dorchestra.soapclient.orchestraurl=/

Local development

Install with mvn -DgeneratePom=true -DcreateChecksum=true install

and run fully qualified (and offline) like mvn -o com.baloise.maven:orchestra-maven-plugin:0.7.2-SNAPSHOT:help

Release the plugin maven central

you need update the pom version and push to any branch to trigger the release pipeline.

Any -SNAPSHOT will be deployed to the sonatype oss snapshot repository.

Any release will be published to maven central.

⚠ Please note that you can only push a release once, as it can not be overwritten. Don't forget to increment the POM version after release see example commit 2cda17.

You may find the maven-release-plugin helpful. I personally like to have a look on the local changes before pushing and use something like mvn --batch-mode release:clean release:prepare -DpushChanges=false -DtagNameFormat="@{project.version}", so I can always git reset --hard origin/master in case.