{"id":50858685,"url":"https://github.com/operaton/operaton-release-parent","last_synced_at":"2026-06-14T20:02:37.402Z","repository":{"id":258421440,"uuid":"873524473","full_name":"operaton/operaton-release-parent","owner":"operaton","description":null,"archived":false,"fork":false,"pushed_at":"2024-12-06T13:43:43.000Z","size":100,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-06T14:43:15.544Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/operaton.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-16T10:07:08.000Z","updated_at":"2024-12-06T13:43:06.000Z","dependencies_parsed_at":"2024-12-06T14:36:22.554Z","dependency_job_id":"a59976db-177e-4757-b402-e867eff71f28","html_url":"https://github.com/operaton/operaton-release-parent","commit_stats":null,"previous_names":["operaton/operaton-release-parent"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/operaton/operaton-release-parent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/operaton%2Foperaton-release-parent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/operaton%2Foperaton-release-parent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/operaton%2Foperaton-release-parent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/operaton%2Foperaton-release-parent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/operaton","download_url":"https://codeload.github.com/operaton/operaton-release-parent/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/operaton%2Foperaton-release-parent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34335688,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-14T02:00:07.365Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-14T20:02:36.578Z","updated_at":"2026-06-14T20:02:37.394Z","avatar_url":"https://github.com/operaton.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.operaton/operaton-release-parent/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.operaton/operaton-release-parent)\n\noperaton-release-parent\n======================\n\nPom which can be inherited for operaton releases defining some common release properties.\nIt allows to deploy to two repositories simultaneously. One is a Nexus OSS server, the other one a Nexus Enterprise server.\nIt will deploy the artifacts at the end of the build to keep the window of failure small when talking to external systems.\n\nUsage\n-----\n\nInherit the operaton-release-parent pom inside your project like so  \n  \n    \u003cparent\u003e\n      \u003cgroupId\u003eorg.operaton\u003c/groupId\u003e\n      \u003cartifactId\u003eoperaton-release-parent\u003c/artifactId\u003e\n      \u003cversion\u003e${LATEST_VERSION}\u003c/version\u003e\n      \u003c!-- do not remove empty tag - http://jira.codehaus.org/browse/MNG-4687 --\u003e\n     \u003crelativePath /\u003e\n    \u003c/parent\u003e  \n    \nIf you have a multi-module build, just inherit in your parent pom.  \n\nSpecify the \u003cscm\u003e section for your project eg.\n    \n    \u003cscm\u003e\n      \u003curl\u003ehttps://github.com/operaton/MY_PROJECT_URL\u003c/url\u003e\n      \u003cconnection\u003escm:git:git@github.com:operaton/MY_PROJECT_URL.git\u003c/connection\u003e\n      \u003cdeveloperConnection\u003escm:git:git@github.com:operaton/MY_PROJECT_URL.git\u003c/developerConnection\u003e\n    \u003c/scm\u003e\n\nRelease\n-------\n\nPrerequisite:  \n\n  Add the following to the profiles and servers section of your local settings.xml file. This allows the signing of your artifacts during the release. \u003cstrong\u003eMandatory for maven central\u003c/strong\u003e.\n  \n    \u003csettings\u003e\n      ...\n      \n      \u003cservers\u003e\n        ...\n        \n        \u003cserver\u003e\n          \u003cid\u003eoperaton-nexus\u003c/id\u003e\n          \u003cusername\u003eMY_CAMUNDA_NEXUS_USER\u003c/username\u003e\n          \u003cpassword\u003eMY_CAMUNDA_NEXUS_PASSWORD\u003c/password\u003e\n        \u003c/server\u003e\n        \u003cserver\u003e\n          \u003cid\u003ecentral\u003c/id\u003e\n          \u003cusername\u003eMY_CENTRAL_USER\u003c/username\u003e\n          \u003cpassword\u003eMY_CENTRAL_PASSWORD\u003c/password\u003e\n        \u003c/server\u003e\n        \n      \u003c/servers\u003e\n      \n      \n      \u003cprofiles\u003e\n        ...\n        \n        \u003cprofile\u003e\n          \u003cid\u003esonatype-oss-release\u003c/id\u003e\n          \u003cproperties\u003e\n            \u003cgpg.passphrase\u003eYOUR_SECRET_GPG_PASSPHRASE\u003c/gpg.passphrase\u003e\n          \u003c/properties\u003e\n        \u003c/profile\u003e\n        \n      \u003c/profiles\u003e\n    \u003c/settings\u003e\n\nTo release your own project use the following command:\n\n    mvn \\\n    release:prepare release:perform \\\n    -B -Dresume=false -Dtag=1.0.0 -DreleaseVersion=1.0.0 -DdevelopmentVersion=1.1.0-SNAPSHOT \\\n    -Darguments=\"--settings=${PATH_TO_YOUR_SETTINGS_XML_FILE}\" \\\n    --settings=${PATH_TO_YOUR_SETTINGS_XML_FILE}\n    \nThis will trigger the `sonatpye-oss-release` profile inside the `operaton-release-parent` pom automatically.\n    \nCustomization\n-------------\n\nYou can override some default behaviours through the usage of the command line properties below. Add those properties to the `-Darguments=\"INSERT_PROPERTIES_HERE\"` part of the Maven release command.\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003cth\u003eProperty\u003c/th\u003e\u003cth\u003eDescription\u003c/th\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003enexus.snapshot.repository\u003c/td\u003e\u003ctd\u003eSpecify the url to your snapshot repository.\u003cbr/\u003eDefault is \u003cstrong\u003ehttps://artifacts.operaton.com/artifactory/operaton-bpm-snapshots\u003c/strong\u003e.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003enexus.release.repository\u003c/td\u003e\u003ctd\u003eSpecify the url to your release repository.\u003cbr/\u003eDefault is \u003cstrong\u003ehttps://artifacts.operaton.com/artifactory/operaton-bpm\u003c/strong\u003e.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eskip.nexus.release\u003c/td\u003e\u003ctd\u003eWhen setting the value to true, skip the deployment to the release repository specified in \u003cdistributionManagement\u003e.\u003cbr/\u003eDefault is \u003cstrong\u003efalse\u003c/strong\u003e.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eskip.central.release\u003c/td\u003e\u003ctd\u003eWhen setting the value to true, skip the deployment to maven central.\u003cbr/\u003eDefault is \u003cstrong\u003efalse\u003c/strong\u003e.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eserverId\u003c/td\u003e\u003ctd\u003ePoints to the corresponding entry in your settings.xml like \u003cserver\u003e\u003cid\u003eyourServerId\u003c/id\u003e\u003c/server\u003e to specify your login credentials.\u003cbr/\u003eDefault is \u003cstrong\u003ecentral\u003c/strong\u003e for maven central.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003enexusUrl\u003c/td\u003e\u003ctd\u003eThe plain url which points to your nexus installation.\u003cbr/\u003e\u003cstrong\u003eMust be a Nexus Enterprise Edition\u003c/strong\u003e\u003cbr/\u003eDefault is \u003cstrong\u003ehttps://oss.sonatype.org\u003c/strong\u003e aka maven central.\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\nTesting\n-------\n\nYou can test your release steps by using the following Maven release command:\n\n    mvn \\\n    release:prepare release:perform \\\n    -B -Dresume=false -Dtag=1.0.0 -DreleaseVersion=1.0.0 -DdevelopmentVersion=1.1.0-SNAPSHOT \\\n    -Darguments=\"--settings=${PATH_TO_YOUR_SETTINGS_XML_FILE} -Dskip.central.release=true -Dnexus.release.repository=${URL_OF_YOUR_LOCAL_NEXUS_REPOSITORY}\" \\\n    --settings=${PATH_TO_YOUR_SETTINGS_XML_FILE} \\\n    -DpushChanges=false -DremoteTagging=false -DlocalCheckout=true\n    \nThis will do a release but will not push anything to the involved git repositories and will not deploy to Maven Central. Instead it will deploy to a local Nexus repository. (Hint: You can use a simple Nexus Docker image to do so.)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foperaton%2Foperaton-release-parent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foperaton%2Foperaton-release-parent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foperaton%2Foperaton-release-parent/lists"}