{"id":37204691,"url":"https://github.com/fitzoh/maven-push-plugin","last_synced_at":"2026-01-14T23:35:41.900Z","repository":{"id":64303479,"uuid":"137687650","full_name":"fitzoh/maven-push-plugin","owner":"fitzoh","description":"`cf maven-push` maven artifacts to cloud foundry","archived":false,"fork":false,"pushed_at":"2018-07-21T00:37:35.000Z","size":50,"stargazers_count":4,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-06-20T12:04:52.212Z","etag":null,"topics":["cloud-foundry","deployment","devops","java","maven","maven-repository","spring-boot"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fitzoh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-06-17T21:16:08.000Z","updated_at":"2024-06-20T12:04:52.213Z","dependencies_parsed_at":"2023-01-15T10:00:28.044Z","dependency_job_id":null,"html_url":"https://github.com/fitzoh/maven-push-plugin","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/fitzoh/maven-push-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fitzoh%2Fmaven-push-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fitzoh%2Fmaven-push-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fitzoh%2Fmaven-push-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fitzoh%2Fmaven-push-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fitzoh","download_url":"https://codeload.github.com/fitzoh/maven-push-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fitzoh%2Fmaven-push-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28438893,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T22:37:52.437Z","status":"ssl_error","status_checked_at":"2026-01-14T22:37:31.496Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cloud-foundry","deployment","devops","java","maven","maven-repository","spring-boot"],"created_at":"2026-01-14T23:35:41.296Z","updated_at":"2026-01-14T23:35:41.887Z","avatar_url":"https://github.com/fitzoh.png","language":"Go","readme":"# cf maven-push plugin\nWant to deploy a specific version of a maven artifact to cloud foundry but don't have a local copy? Use `cf maven-push`.\n\n`cf maven-push` is a drop in replacement for `cf push` that:\n* downloads the maven artifact to a temp file based on the manifest\n* calls `cf push` with the arguments passed to `cf maven-push` (with an updated path to the artifact)\n\nA manifest file (with a single application in the manifest) is required to use this plugin.\n\nDoes not yet support [variable substitution](https://docs.cloudfoundry.org/devguide/deploy-apps/manifest.html#multi-manifests) (at least for the `maven` portion of the manifest).\n\n### usage\n\nshort version:\n`$ cf maven-push -f my-manifest.yml \u003cany other args to pass to 'cf push'\u003e`\n\nlong version:\n```\ncf maven-push [-f MANIFEST_PATH] [--maven-repo-url REPO_URL] [--maven-group-id GROUP_ID] [--maven-artifact-id ARTIFACT_ID]\n[--maven-version VERSION] [--maven-classifier CLASSIFIER] [--maven-extension EXTENSION] [--maven-repo-username REPO_USERNAME]\n[--maven-repo-password REPO_PASSWORD] [--remote-manifest-url MANIFEST_URL] [--remote-manifest-username MANIFEST_USERNAME]\n[--remote-manifest-password MANIFEST_PASSWORD] \u003ccf push flags\u003e\n```\nor with an explicit app name\n```\ncf maven-push APP_NAME [-f MANIFEST_PATH] [--maven-repo-url REPO_URL] [--maven-group-id GROUP_ID] [--maven-artifact-id ARTIFACT_ID]\n[--maven-version VERSION] [--maven-classifier CLASSIFIER] [--maven-extension EXTENSION] [--maven-repo-username REPO_USERNAME]\n[--maven-repo-password REPO_PASSWORD] [--remote-manifest-url MANIFEST_URL] [--remote-manifest-username MANIFEST_USERNAME]\n[--remote-manifest-password MANIFEST_PASSWORD] \u003ccf push flags\u003e\n```\n### example manifest\n\n```\n---\napplications:\n- name: my-application\n  memory: 1G\n  maven:\n    repo-url: https://repo.maven.apache.org/maven2/\n    group-id: com.group.my\n    artifact-id: my-artifact\n    version: 1.0.0\n```\n\n### all manifest options\n\n`repo-url` (required)\n\n`group-id` (required)\n\n`artifact-id` (required)\n\n`version` (required)\n\n`extension` (optional, default `.jar`)\n\n`classifier` (optional, default none)\n\n`repo-username` (optional, default none)\n\n`repo-password` (optional, default none)\n\n`remote-manifest-url` (optional, default none)\n\n`remote-manifest-username` (optional, default none)\n\n`remote-manifest-password` (optional, default none)\n\n### remote manifests\nIf your manifest file lives on a remote server (like your artifact does),\nyou can retrieve a copy by specifying the url it is hosted at (and optionally basic auth credentials).\n\n### installation\n\nInstall from the [community plugin repository](https://plugins.cloudfoundry.org/)\n\n`cf install-plugin -r CF-Community \"maven-push\"`\n\nor download from the [releases page](https://github.com/fitzoh/maven-push-plugin/releases)\n\n`$ cf install-plugin path/to/maven-push/binary`\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffitzoh%2Fmaven-push-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffitzoh%2Fmaven-push-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffitzoh%2Fmaven-push-plugin/lists"}