{"id":15013700,"url":"https://github.com/quarkusio/quarkus-extension-catalog","last_synced_at":"2025-04-07T12:10:50.551Z","repository":{"id":38080957,"uuid":"267590033","full_name":"quarkusio/quarkus-extension-catalog","owner":"quarkusio","description":"Quarkus Extension Catalog","archived":false,"fork":false,"pushed_at":"2024-10-29T12:07:19.000Z","size":3878,"stargazers_count":13,"open_issues_count":0,"forks_count":53,"subscribers_count":6,"default_branch":"main","last_synced_at":"2024-10-29T14:35:46.508Z","etag":null,"topics":["catalog","extensions","quarkus","registry"],"latest_commit_sha":null,"homepage":"https://registry.quarkus.io/","language":"Shell","has_issues":false,"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/quarkusio.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":"2020-05-28T12:56:03.000Z","updated_at":"2024-10-29T12:07:22.000Z","dependencies_parsed_at":"2023-09-23T09:21:09.677Z","dependency_job_id":"5f1d08cd-3345-4f18-9ee5-7aa00ae3898a","html_url":"https://github.com/quarkusio/quarkus-extension-catalog","commit_stats":{"total_commits":3600,"total_committers":51,"mean_commits":70.58823529411765,"dds":0.1905555555555556,"last_synced_commit":"7d2ea5a0aa7723ec51be5e6d1d5a6e6fc9581ef5"},"previous_names":[],"tags_count":81,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quarkusio%2Fquarkus-extension-catalog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quarkusio%2Fquarkus-extension-catalog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quarkusio%2Fquarkus-extension-catalog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quarkusio%2Fquarkus-extension-catalog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quarkusio","download_url":"https://codeload.github.com/quarkusio/quarkus-extension-catalog/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247648977,"owners_count":20972945,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["catalog","extensions","quarkus","registry"],"created_at":"2024-09-24T19:44:41.357Z","updated_at":"2025-04-07T12:10:50.533Z","avatar_url":"https://github.com/quarkusio.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Quarkus Extension Catalog\n\nThis repository is the backing catalog for the [Quarkus community extension registry](https://quarkus.io/guides/extension-registry-user#registry.quarkus.io). \nExtensions added here will be included in registry.quarkus.io.\n\n## Catalog\nA catalog is a local directory (which can be cloned from a Git repository) with the following structure: \n\n```bash\n.\n├── extensions\n│   └── \u003cany_extension\u003e.yaml\n└── platforms\n│   └── \u003cany_platform\u003e.yaml\n```\n\n## Extensions\nFor maintenance purposes, each extension is declared in its own file and has the following structure:\n\n```yaml\ngroup-id: org.apache.myfaces.core.extensions.quarkus\nartifact-id: myfaces-quarkus\n``` \n\nThe Quarkus extension MUST be released to a Maven repository. The descriptor states the Maven coordinates and the repository URL (if available).\n\nIMPORTANT: The extension must be released using at least Quarkus 1.13.0.Final, otherwise the produced metadata won't be understood by the Registry application\n\n### Compatibility with older Quarkus Core versions\n\nHaving an extension built against Quarkus Core version X.Y, it is assumed that the extension release is compatible with any requested Quarkus version \u003e= X.Y and less than (X+1).0. That is, minor Quarkus releases are assumed to be backwards compatible for extensions, but major ones are not.\nIf you want to mark an extension release compatible with an older Quarkus core version, or across major version boundaries, add a `compatible-with-quarkus-core` attribute inside the version, as in the following example:\n\n```yaml\ngroup-id: \"io.quarkiverse.arthas\"\nartifact-id: \"quarkus-arthas\"\nversions:\n  - \"0.1\":\n      compatible-with-quarkus-core:\n        - \"2.8.3.Final\"\n\n```\n\n## Platforms \n\nPlatforms are a set of extensions and MUST exist as a BOM.\n\n```yaml\ngroup-id: \"io.quarkus\"\nartifact-id: \"quarkus-bom-quarkus-platform-descriptor\"\nclassifier-as-version: true\n```\n\n## Opting in to be recognized as a sponsor or contributor \n\nAs well as the catalog information, this repository also holds information about which organizations and companies have opted-in to be shown in the Quarkiverse tooling. \nThe opt-in information is in the [named-contributing-orgs-opt-in.yml](named-contributing-orgs-opt-in.yml) file. \nIf a company has made a sustained contribution to an extension, the Quarkiverse tooling will auto-detect it as a sponsor. It won't identify a company as a sponsor without an opt-in. \nTo opt-in, add your company's name to the `named-sponsors` list. \nIf you would like your company to be shown on things like contributor graphs, but *not* ever listed as a sponsor, update the `named-contributing-orgs` list.\nThere is no need to update `named-contributing-orgs` if your company is listed in `named-sponsors`. \n\nSponsorship can also be indicated manually, by updating an extension's [extension metadata](https://quarkus.io/guides/extension-metadata).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquarkusio%2Fquarkus-extension-catalog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquarkusio%2Fquarkus-extension-catalog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquarkusio%2Fquarkus-extension-catalog/lists"}