{"id":22298015,"url":"https://github.com/apache/camel-jbang-examples","last_synced_at":"2025-07-29T01:33:16.549Z","repository":{"id":266286216,"uuid":"888955332","full_name":"apache/camel-jbang-examples","owner":"apache","description":"Apache Camel JBang Examples","archived":false,"fork":false,"pushed_at":"2025-06-18T07:04:15.000Z","size":1136,"stargazers_count":8,"open_issues_count":1,"forks_count":5,"subscribers_count":30,"default_branch":"main","last_synced_at":"2025-07-22T15:54:11.135Z","etag":null,"topics":["camel","integration","java","low-code"],"latest_commit_sha":null,"homepage":"https://camel.apache.org","language":"Groovy","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/apache.png","metadata":{"files":{"readme":"README.adoc","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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}},"created_at":"2024-11-15T10:25:06.000Z","updated_at":"2025-07-17T12:58:17.000Z","dependencies_parsed_at":"2024-12-03T14:35:08.389Z","dependency_job_id":"f8fd70fc-eb0f-4cdc-a531-286688807b9a","html_url":"https://github.com/apache/camel-jbang-examples","commit_stats":null,"previous_names":["apache/camel-jbang-examples"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/apache/camel-jbang-examples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fcamel-jbang-examples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fcamel-jbang-examples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fcamel-jbang-examples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fcamel-jbang-examples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apache","download_url":"https://codeload.github.com/apache/camel-jbang-examples/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fcamel-jbang-examples/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267516494,"owners_count":24100334,"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-07-28T02:00:09.689Z","response_time":68,"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":["camel","integration","java","low-code"],"created_at":"2024-12-03T17:59:19.429Z","updated_at":"2025-07-29T01:33:16.544Z","avatar_url":"https://github.com/apache.png","language":"Groovy","funding_links":[],"categories":[],"sub_categories":[],"readme":"= Apache Camel JBang Examples\n\nhttp://camel.apache.org/[Apache Camel] is a powerful open source integration framework based on known\nEnterprise Integration Patterns with powerful bean integration.\n\n== Introduction\n\nThis project provides examples for low-code integrations with Apache Camel JBang.\n\n=== Examples\n\nThis git repository hosts a set of ready-to-use examples you can try to learn more about Apache Camel,\nand how Camel can be used to integrate systems. These examples are accessible for non developers, as\nthey can run without having to use traditional Java compilation or build systems such as Maven or Gradle.\n\nAll examples can run local on your computer from a CLI terminal by executing a few commands.\n\nThese examples uses JBang as the CLI which is a great tool that makes using Java much easier.\n\n== Install Camel JBang\n\nFirst install JBang according to https://www.jbang.dev\n\nWhen JBang is installed then you should be able to run from a shell:\n\n[source,shell]\n----\njbang --version\n----\n\nThis will output the version of JBang.\n\nTo run this example you can install Camel on JBang via:\n\n[source,shell]\n----\njbang app install camel@apache/camel\n----\n\nWhich allows to run Camel with `camel` as shown below.\n\n[source,shell]\n----\ncamel --version\n----\n\n== Integration testing\n\nThe examples provide automated integration tests that you can run with the https://citrusframework.org/[Citrus] test framework.\n\nYou need to install Citrus as a JBang app, too:\n\n[source,shell]\n----\njbang app install citrus@citrusframework/citrus\n----\n\nNow you can start running commands for the Citrus JBang app with `citrus`:\n\n[source,shell]\n----\ncitrus --version\n----\n\nUsually the Citrus tests are written in YAML files and named accordingly to the Camel JBang route source file.\n\nFor instance the Camel route `mqtt.camel.yaml` route provides a test named `mqtt.camel.it.yaml`.\nYou can run the test with Citrus JBang like this:\n\n[source,shell]\n----\ncd test\ncitrus run mqtt.camel.it.yaml\n----\n\nUsually the test prepares the complete infrastructure (e.g. via Docker compose) and starts the Camel route automatically via JBang.\nOf course the test also performs some validation steps to make sure that the Camel route works as expected.\n\n== Other Examples\n\nYou can also find a set of various Camel JBang examples at: https://github.com/apache/camel-kamelets-examples/tree/main/jbang\n\n== Help and contributions\n\nIf you hit any problem using Camel or have some feedback, then please\nhttps://camel.apache.org/community/support/[let us know].\n\nWe also love contributors, so\nhttps://camel.apache.org/community/contributing/[get involved] :-)\n\nThe Camel riders!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fcamel-jbang-examples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapache%2Fcamel-jbang-examples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fcamel-jbang-examples/lists"}