{"id":33223958,"url":"https://github.com/tsukoyachi/camel-quarkus-forge","last_synced_at":"2026-05-18T05:03:06.008Z","repository":{"id":324465024,"uuid":"1097316061","full_name":"Tsukoyachi/camel-quarkus-forge","owner":"Tsukoyachi","description":"Test project: YAML-configured Apache Camel Route with native Quarkus","archived":false,"fork":false,"pushed_at":"2025-11-16T00:24:10.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-16T02:23:43.008Z","etag":null,"topics":["apache-camel","java","quarkus"],"latest_commit_sha":null,"homepage":"","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/Tsukoyachi.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":"2025-11-15T23:48:31.000Z","updated_at":"2025-11-16T00:24:14.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Tsukoyachi/camel-quarkus-forge","commit_stats":null,"previous_names":["tsukoyachi/camel-quarkus-forge"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Tsukoyachi/camel-quarkus-forge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tsukoyachi%2Fcamel-quarkus-forge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tsukoyachi%2Fcamel-quarkus-forge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tsukoyachi%2Fcamel-quarkus-forge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tsukoyachi%2Fcamel-quarkus-forge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tsukoyachi","download_url":"https://codeload.github.com/Tsukoyachi/camel-quarkus-forge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tsukoyachi%2Fcamel-quarkus-forge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":284725595,"owners_count":27053255,"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","status":"online","status_checked_at":"2025-11-16T02:00:05.974Z","response_time":65,"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":["apache-camel","java","quarkus"],"created_at":"2025-11-16T15:01:17.041Z","updated_at":"2026-05-18T05:03:05.997Z","avatar_url":"https://github.com/Tsukoyachi.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Camel Quarkus Forge\n\nDynamic framework for creating Apache Camel routes from YAML configuration without writing Java code.\n\n## Features\n\n- YAML-based route configuration\n- CDI dependency injection with automatic component discovery\n- Automatic URL encoding for special characters\n- Route chaining via direct endpoints\n- Zero-configuration component extensions\n- Hot reload for development\n\n## Supported Components\n\n**Camel Consumers**: File, Direct, Timer, Kafka, Ibmmq  \n**Camel Producers**: File, Direct, Log, Kafka, Ibmmq\n\n## Quick Start\n\n**Development mode:**\n```bash\n./mvnw quarkus:dev\n```\nYou can run a specific profile by adding `\"-Dquarkus.profile=xxx\"` where xxx is the application-xxx.yml you want to load.\n\n**Build application:**\n```bash\n./mvnw package\n```\n\n**Run application:**\n```bash\njava -jar target/quarkus-app/quarkus-run.jar\n```\n\n## Configuration Example\n\nConfigure routes in `src/main/resources/application.yml` or application-xxx.yml if you want to create custom route for specific env :\n\n```yaml\ncamel:\n  routes:\n    definitions:\n      - id: \"file-to-file-route\"\n        source:\n          type: \"file\"\n          properties:\n            path: \"src/input\"\n            delete: true\n            include: .*\\.json\n        destination:\n          type: \"file\"\n          properties:\n            path: \"src/output\"\n\n      - id: \"timer-to-log-route\"\n        source:\n          type: \"timer\"\n          properties:\n            name: \"scheduler\"\n            period: 5000\n        destination:\n          type: \"log\"\n          properties:\n            name: \"scheduler-log\"\n```\n\nThe above configuration creates two routes: one monitoring JSON files and another logging scheduled events.\n\n## Tech Stack\n\n- **Apache Camel Quarkus 3.29.3** - Integration framework\n- **Quarkus 3.29.3** - Cloud-native Java framework\n- **CDI** - Dependency injection\n- **Java 21** - Programming language\n\n---\n\n**Author**: [Tsukoyachi](https://github.com/Tsukoyachi)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsukoyachi%2Fcamel-quarkus-forge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftsukoyachi%2Fcamel-quarkus-forge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsukoyachi%2Fcamel-quarkus-forge/lists"}