{"id":28829237,"url":"https://github.com/forcedotcom/einstein-bot-channel-connector","last_synced_at":"2025-08-04T11:35:33.156Z","repository":{"id":38818582,"uuid":"464539739","full_name":"forcedotcom/einstein-bot-channel-connector","owner":"forcedotcom","description":null,"archived":false,"fork":false,"pushed_at":"2024-01-19T22:28:29.000Z","size":736,"stargazers_count":13,"open_issues_count":3,"forks_count":2,"subscribers_count":12,"default_branch":"master","last_synced_at":"2024-04-14T19:33:31.688Z","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":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/forcedotcom.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null}},"created_at":"2022-02-28T15:35:27.000Z","updated_at":"2024-04-14T19:33:31.689Z","dependencies_parsed_at":"2023-02-15T13:16:01.414Z","dependency_job_id":null,"html_url":"https://github.com/forcedotcom/einstein-bot-channel-connector","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/forcedotcom/einstein-bot-channel-connector","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/forcedotcom%2Feinstein-bot-channel-connector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/forcedotcom%2Feinstein-bot-channel-connector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/forcedotcom%2Feinstein-bot-channel-connector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/forcedotcom%2Feinstein-bot-channel-connector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/forcedotcom","download_url":"https://codeload.github.com/forcedotcom/einstein-bot-channel-connector/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/forcedotcom%2Feinstein-bot-channel-connector/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260690962,"owners_count":23047106,"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":[],"created_at":"2025-06-19T05:12:24.082Z","updated_at":"2025-08-04T11:35:32.738Z","avatar_url":"https://github.com/forcedotcom.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Spring Boot Channel Connector for Einstein Bots\n\nThis is the parent project of Einstein Bot Channel Connector. This contains following submodules:\n\n* [channel-connector-starter](channel-connector-starter) : Channel Connector Framework is spring boot starter that simplifies building channel connectors for the salesforce einstein bot.\n* [channel-connector-archetype](channel-connector-archetype) : A Maven archetype for creating a new bot channel connector application\n* [examples](examples) : Example applications built using Channel Connector Starter to demonstrate the usage.\n\nPlease see README files in submodules for usage.\n\n## Developer Guide\n\n### Code Style\n\nThe project uses the [Google Java Style Guide](https://google.github.io/styleguide/javaguide.html).\nFormat settings definition files for importing into IDEs are available for [Eclipse](https://github.com/google/styleguide/blob/gh-pages/eclipse-java-google-style.xml)\nand [IntelliJ IDEA](https://github.com/google/styleguide/blob/gh-pages/intellij-java-google-style.xml).\n\n### Publishing to Maven Central\n\n#### Publish Release Versions\nGo to [actions](https://github.com/forcedotcom/einstein-bot-channel-connector/tree/master/.github/workflows/maven-release.yml) tab and select **Maven Release** action. Click *Run workflow* , provide good description and hit **Run workflow** button.\n\n#### Publish Snapshot Versions\nGo to [actions](https://github.com/forcedotcom/einstein-bot-channel-connector/tree/master/.github/workflows/maven-publish.yml) tab and select **Maven Publish Snapshot** action. Click *Run workflow* , provide good description and hit **Run workflow** button.\n\n#### Choosing Release Versions\n\nThe version of the artifact released is same as version defined in [pom.xml](https://github.com/forcedotcom/einstein-bot-channel-connector/blob/master/pom.xml#L21) with `-SNAPSHOT` removed.\nAfter the release pom.xml will be automatically updated with next patch snapshot version.\n\nFor eg. if `pom.xml` has version `2.0.1-SNAPSHOT` , then version `2.0.1` will be released and the pom.xml will be updated with version 2.0.2-SNAPSHOT\n\nIf you want to release a minor or major version, just update version in pom.xml, For eg, if you want to release `3.0.0` , then set version as  `3.0.0-SNAPSHOT` in pom.xml.\n\n#### Version Numbering\n\nThe **minor** and **patch** versions will be incremented for minor features and bug fixes.\n\nThe **major** version will be incremented for\n* Major changes made to Channel Connector OR\n* SDK dependency is upgraded to new version to support new Runtime API version.\n\nHere is the Channel connector version and corresponding Runtime API version supported by it.\n\n| Channel connector Version | Supported Runtime API\n| --------------------------| --------------------------------------\n| 1.x.x                     | /v4.0.0\n| 2.0.x                     | /v5.0.0\n| 2.1.x                     | /v5.1.0\n\n### Branching model to support development of multiple API versions\n\nWe will maintain the SDK code for each Runtime API version separately in individual branches.\nWe will cut off release branch for each Runtime API version.\n\nFor eg, Currently, the master branch is used to develop for Runtime API Version 5.0.0.\nThe [releases/api-4.x](https://github.com/forcedotcom/einstein-bot-channel-connector/tree/releases/api-4.x) branch is used to maintain support for API 4.0.0.\n\nSo to make change for Channel Connector 1.x.x that supports API v4.0.0, it should be committed to `releases/api-4.x` branch.\nAlso, choose `releases/api-4.x` when running Release action workflow.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fforcedotcom%2Feinstein-bot-channel-connector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fforcedotcom%2Feinstein-bot-channel-connector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fforcedotcom%2Feinstein-bot-channel-connector/lists"}