{"id":20471561,"url":"https://github.com/backbase/kamel-maven-plugin","last_synced_at":"2026-05-09T18:44:59.943Z","repository":{"id":222639364,"uuid":"757960149","full_name":"Backbase/kamel-maven-plugin","owner":"Backbase","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-27T15:45:05.000Z","size":17,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-12-04T06:15:43.434Z","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":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Backbase.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":"2024-02-15T10:46:27.000Z","updated_at":"2024-02-15T11:08:34.000Z","dependencies_parsed_at":"2024-02-15T12:26:17.336Z","dependency_job_id":"450c61b4-7ca0-41de-845d-5b66e3682b2b","html_url":"https://github.com/Backbase/kamel-maven-plugin","commit_stats":null,"previous_names":["backbase/kamel-maven-plugin"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Backbase/kamel-maven-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Backbase%2Fkamel-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Backbase%2Fkamel-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Backbase%2Fkamel-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Backbase%2Fkamel-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Backbase","download_url":"https://codeload.github.com/Backbase/kamel-maven-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Backbase%2Fkamel-maven-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32831499,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"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":"2024-11-15T14:16:30.616Z","updated_at":"2026-05-09T18:44:59.901Z","avatar_url":"https://github.com/Backbase.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kamel Maven Plugin README\n\nThe `kamel-maven-plugin` is designed to simplify the deployment and management of Camel integrations within a Kubernetes environment using the `kamel` CLI. This plugin distinguishes itself by auto-scanning and auto-configuring various resources, properties, and dependencies to streamline the deployment process.\n\n## Features\n\n- **Auto-scanning**: The plugin automatically scans your project for configuration files, resources, and properties to include in the kamel command.\n\n- **Auto-configuring**: It automatically detects and sets up configuration maps in Kubernetes for the discovered resources.\n\n- **Dependencies Management**: It fetches non-Apache Camel dependencies from the project and appends them to the kamel command.\n\n## Goals\n\n### `run`\n\nExecutes the `kamel run` command to deploy the integration to Kubernetes. The goal is designed to discover:\n\n- Configuration files and treats them to create configMaps in Kubernetes.\n- Non-Apache Camel Maven dependencies and appends them to the `kamel run` command.\n\n### `dev`\n\nExecutes the `kamel run` command in development mode by appending the `--dev` flag. It allows for quicker iterative development as it facilitates hot-reloading of Camel routes during runtime.\n\nThe `dev` goal leverages all the capabilities of the `run` goal but provides a more developer-friendly approach to deploying integrations to Kubernetes.\n\n## Configuration\n\n### Common Parameters:\n\n- **project**: Maven project reference. *(Required)*\n\n- **configs**: List of configurations to be passed to the kamel CLI.\n\n- **traits**: Map of traits to be used by the kamel CLI.\n\n- **parentScans**: List of paths relative to the parent directory to be scanned for files.\n\n- **excludedDependencies**: List of Maven artifactIds to be excluded when fetching the list of non-Apache Camel dependencies.\n\n- **resourceFileTypes**: List of file extensions considered as resource files. Default is `.yaml`.\n\n- **connectorNamePattern**: Pattern to match filenames considered as connector files. Default is `*Connector.java`.\n\n- **apiDirectoryPattern**: Pattern to identify directories containing API documentation. Default is `**/api/doc/`.\n\n### Advanced parameters:\n\n- **PARENT_DIR**: Absolute path of the parent directory.\n\n- **MODULE_DIR**: Absolute path of the module directory.\n\n## Usage\n\nAdd the plugin to your `pom.xml`:\n\n```xml\n\u003cbuild\u003e\n    \u003cplugins\u003e\n        \u003cplugin\u003e\n            \u003cgroupId\u003ecom.backbase.oss\u003c/groupId\u003e\n            \u003cartifactId\u003ekamel-maven-plugin\u003c/artifactId\u003e\n            \u003cversion\u003eYOUR_PLUGIN_VERSION\u003c/version\u003e\n            \u003cconfiguration\u003e\n                \u003c!-- Your configurations here --\u003e\n            \u003c/configuration\u003e\n        \u003c/plugin\u003e\n    \u003c/plugins\u003e\n\u003c/build\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbackbase%2Fkamel-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbackbase%2Fkamel-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbackbase%2Fkamel-maven-plugin/lists"}