{"id":44266985,"url":"https://github.com/fireflyframework/fireflyframework-plugins","last_synced_at":"2026-02-24T19:03:05.185Z","repository":{"id":336918937,"uuid":"1151407742","full_name":"fireflyframework/fireflyframework-plugins","owner":"fireflyframework","description":"Lightweight plugin system with annotation-based discovery, dependency resolution, and hot-loadable JAR/Spring Bean plugin loaders.","archived":false,"fork":false,"pushed_at":"2026-02-18T12:14:56.000Z","size":75,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-18T15:55:27.645Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","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/fireflyframework.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-06T12:33:47.000Z","updated_at":"2026-02-18T12:15:00.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/fireflyframework/fireflyframework-plugins","commit_stats":null,"previous_names":["fireflyframework/fireflyframework-plugins"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/fireflyframework/fireflyframework-plugins","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fireflyframework%2Ffireflyframework-plugins","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fireflyframework%2Ffireflyframework-plugins/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fireflyframework%2Ffireflyframework-plugins/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fireflyframework%2Ffireflyframework-plugins/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fireflyframework","download_url":"https://codeload.github.com/fireflyframework/fireflyframework-plugins/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fireflyframework%2Ffireflyframework-plugins/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29796790,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T16:37:37.581Z","status":"ssl_error","status_checked_at":"2026-02-24T16:37:37.074Z","response_time":75,"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":[],"created_at":"2026-02-10T18:25:42.716Z","updated_at":"2026-02-24T19:03:05.149Z","avatar_url":"https://github.com/fireflyframework.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Firefly Framework - Plugins\n\n[![CI](https://github.com/fireflyframework/fireflyframework-plugins/actions/workflows/ci.yml/badge.svg)](https://github.com/fireflyframework/fireflyframework-plugins/actions/workflows/ci.yml)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)\n[![Java](https://img.shields.io/badge/Java-21%2B-orange.svg)](https://openjdk.org)\n[![Spring Boot](https://img.shields.io/badge/Spring%20Boot-3.x-green.svg)](https://spring.io/projects/spring-boot)\n\n\u003e Plugin system providing extension point discovery, lifecycle management, and dependency resolution for Firefly Platform modules.\n\n---\n\n## Table of Contents\n\n- [Overview](#overview)\n- [Features](#features)\n- [Requirements](#requirements)\n- [Installation](#installation)\n- [Quick Start](#quick-start)\n- [Configuration](#configuration)\n- [Documentation](#documentation)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Overview\n\nFirefly Framework Plugins provides a simplified plugin architecture for extending the Firefly Platform. It defines a plugin API with annotations for declaring plugins and extension points, along with a core implementation for plugin lifecycle management, extension registry, and dependency resolution.\n\nThe project is structured as a multi-module build with two sub-modules: plugin-api (annotations, interfaces, and models) and plugin-core (default implementations). The `@Plugin` and `@Extension` annotations enable declarative plugin definitions, while `@ExtensionPoint` marks interfaces that plugins can implement.\n\nThe `DefaultPluginManager` handles plugin discovery, initialization, and shutdown, while `DefaultExtensionRegistry` manages extension point bindings. The `PluginDependencyResolver` ensures plugins are loaded in the correct order based on their declared dependencies.\n\n## Features\n\n- `@Plugin` annotation for declarative plugin definition\n- `@Extension` annotation for marking extension implementations\n- `@ExtensionPoint` annotation for declaring extensible interfaces\n- `PluginManager` interface with default implementation\n- `ExtensionRegistry` for managing extension point bindings\n- `PluginDependencyResolver` for dependency-ordered plugin loading\n- `PluginDescriptor` and `PluginMetadata` for plugin information\n- Plugin state lifecycle management (created, initialized, started, stopped)\n- Multi-module architecture: plugin-api, plugin-core\n\n## Requirements\n\n- Java 21+\n- Spring Boot 3.x\n- Maven 3.9+\n\n## Installation\n\n```xml\n\u003c!-- Plugin API (for plugin developers) --\u003e\n\u003cdependency\u003e\n    \u003cgroupId\u003eorg.fireflyframework\u003c/groupId\u003e\n    \u003cartifactId\u003eplugin-api\u003c/artifactId\u003e\n    \u003cversion\u003e26.02.06\u003c/version\u003e\n\u003c/dependency\u003e\n\n\u003c!-- Plugin Core (for host applications) --\u003e\n\u003cdependency\u003e\n    \u003cgroupId\u003eorg.fireflyframework\u003c/groupId\u003e\n    \u003cartifactId\u003eplugin-core\u003c/artifactId\u003e\n    \u003cversion\u003e26.02.06\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n## Quick Start\n\n```java\nimport org.fireflyframework.plugin.annotation.Plugin;\nimport org.fireflyframework.plugin.annotation.Extension;\nimport org.fireflyframework.plugin.annotation.ExtensionPoint;\n\n// Define an extension point\n@ExtensionPoint\npublic interface PaymentProcessor {\n    Mono\u003cPaymentResult\u003e process(PaymentRequest request);\n}\n\n// Implement a plugin\n@Plugin(id = \"stripe-payments\", version = \"1.0.0\")\npublic class StripePlugin implements org.fireflyframework.plugin.api.Plugin {\n\n    @Extension\n    public class StripePaymentProcessor implements PaymentProcessor {\n        @Override\n        public Mono\u003cPaymentResult\u003e process(PaymentRequest request) {\n            return stripeApi.charge(request);\n        }\n    }\n}\n```\n\n## Configuration\n\nNo configuration is required. Plugins are discovered and loaded automatically by the `PluginManager`.\n\n## Documentation\n\nNo additional documentation available for this project.\n\n## Contributing\n\nContributions are welcome. Please read the [CONTRIBUTING.md](CONTRIBUTING.md) guide for details on our code of conduct, development process, and how to submit pull requests.\n\n## License\n\nCopyright 2024-2026 Firefly Software Solutions Inc.\n\nLicensed under the Apache License, Version 2.0. See [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffireflyframework%2Ffireflyframework-plugins","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffireflyframework%2Ffireflyframework-plugins","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffireflyframework%2Ffireflyframework-plugins/lists"}