{"id":15056428,"url":"https://github.com/appulse-projects/encon-java","last_synced_at":"2026-03-04T08:03:02.942Z","repository":{"id":57731418,"uuid":"119891417","full_name":"appulse-projects/encon-java","owner":"appulse-projects","description":"Java based Erlang Node Connector. https://appulse.io","archived":false,"fork":false,"pushed_at":"2022-12-14T20:44:43.000Z","size":1245,"stargazers_count":18,"open_issues_count":3,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-24T05:26:32.780Z","etag":null,"topics":["elixir","elixir-client","elixir-examples","elixir-lang","elixir-language","elixir-library","erlang","erlang-distribution","erlang-driver","erlang-libraries","erlang-library","erlang-node","erlang-node-connector","erlang-otp","java","java-library"],"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/appulse-projects.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-01T20:45:28.000Z","updated_at":"2024-12-03T03:09:31.000Z","dependencies_parsed_at":"2023-01-29T01:02:10.289Z","dependency_job_id":null,"html_url":"https://github.com/appulse-projects/encon-java","commit_stats":null,"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appulse-projects%2Fencon-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appulse-projects%2Fencon-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appulse-projects%2Fencon-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appulse-projects%2Fencon-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/appulse-projects","download_url":"https://codeload.github.com/appulse-projects/encon-java/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248154988,"owners_count":21056543,"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":["elixir","elixir-client","elixir-examples","elixir-lang","elixir-language","elixir-library","erlang","erlang-distribution","erlang-driver","erlang-libraries","erlang-library","erlang-node","erlang-node-connector","erlang-otp","java","java-library"],"created_at":"2024-09-24T21:51:17.821Z","updated_at":"2026-03-04T08:03:02.895Z","avatar_url":"https://github.com/appulse-projects.png","language":"Java","readme":"# Overview\n\n[![build_status](https://travis-ci.org/appulse-projects/encon-java.svg?branch=master)](https://travis-ci.org/appulse-projects/encon-java)\n[![maven_central](https://maven-badges.herokuapp.com/maven-central/io.appulse.encon/encon/badge.svg)](https://search.maven.org/search?q=g:io.appulse.encon)\n[![License](http://img.shields.io/:license-apache-brightgreen.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)\n\u003ca href=\"https://github.com/ben-manes/caffeine/wiki\"\u003e\n\u003cimg align=\"right\" height=\"90px\" src=\"https://avatars0.githubusercontent.com/u/35625214?s=200\u0026v=4\"\u003e\n\u003c/a\u003e\n\nJava implementation of **E**rlang **N**ode **CON**nector (using Eralng Distribution Protocol). For more information, visit the [site](https://appulse.io).\n\nSub-modules descriptions:\n\n- [Encon common](./encon-common/README.md) - the set of common classes for all subprojects;\n- [Encon terms](./encon-terms/README.md) - Erlang's terms classes and different helpers;\n- [Encon config](./encon-config/README.md) - configuration builder classes;\n- [Encon](./encon/README.md) - the lib itself;\n- [Encon databind](./encon-databind/README.md) - serializers/deserializers from/to Java/Eralng objects;\n- [Encon handler](./encon-handler/README.md) - helpers for handling received messages in mailbox;\n- [Encon Spring](./encon-spring/README.md) - Spring Boot integration;\n- [Encon examples](./examples/README.md) - different encon's examples;\n- [Encon benchmark](./benchmark/README.md) - encon's benchmarks;\n\n## Development\n\nThese instructions will get you a copy of the project up and running on your local machine for development and testing purposes.\n\n### Prerequisites\n\nFor building the project you need only a [Java compiler](http://www.oracle.com/technetwork/java/javase/downloads/index.html).\n\n\u003e **IMPORTANT:** the project requires Java version starting from **8**\n\nAnd, of course, you need to clone the project from GitHub:\n\n```bash\n$\u003e git clone https://github.com/appulse-projects/encon-java\n$\u003e cd encon-java\n```\n\n### Building\n\nFor building routine automation, I am using [maven](https://maven.apache.org).\n\nTo build the project, do the following:\n\n```bash\n$\u003e mvn clean compile\n...\n[INFO] ------------------------------------------------------------------------\n[INFO] Reactor Summary:\n[INFO]\n[INFO] encon 1.6.10 ........................................ SUCCESS [  1.210 s]\n[INFO] encon-common ....................................... SUCCESS [ 25.693 s]\n[INFO] encon-terms ........................................ SUCCESS [ 27.517 s]\n[INFO] encon-config ....................................... SUCCESS [ 18.707 s]\n[INFO] encon-databind ..................................... SUCCESS [ 22.462 s]\n[INFO] encon .............................................. SUCCESS [ 36.247 s]\n[INFO] encon-handler ...................................... SUCCESS [ 17.436 s]\n[INFO] encon-spring ....................................... SUCCESS [ 11.516 s]\n[INFO] examples ........................................... SUCCESS [  0.024 s]\n[INFO] simple ............................................. SUCCESS [  5.337 s]\n[INFO] echo-server ........................................ SUCCESS [  5.840 s]\n[INFO] echo-server-spring ................................. SUCCESS [  7.716 s]\n[INFO] custom-queue ....................................... SUCCESS [  3.920 s]\n[INFO] databind ........................................... SUCCESS [  5.045 s]\n[INFO] handler-basic ...................................... SUCCESS [  6.443 s]\n[INFO] handler-advanced ................................... SUCCESS [ 11.289 s]\n[INFO] load-config ........................................ SUCCESS [  3.725 s]\n[INFO] load-config-spring ................................. SUCCESS [  6.420 s]\n[INFO] benchmark 1.6.10 .................................... SUCCESS [  5.594 s]\n[INFO] ------------------------------------------------------------------------\n[INFO] BUILD SUCCESS\n[INFO] ------------------------------------------------------------------------\n[INFO] Total time: 01:15 min\n[INFO] Finished at: 2020-08-20T18:36:04+03:00\n[INFO] ------------------------------------------------------------------------\n```\n\n### Running the tests\n\nTo run the project's test, do the following:\n\n```bash\n$\u003e mvn clean test\n...\n[INFO] -------------------------------------------------------\n[INFO]  T E S T S\n[INFO] -------------------------------------------------------\n...\n[INFO]\n[INFO] Results:\n[INFO]\n[INFO] Tests run: 67, Failures: 0, Errors: 0, Skipped: 0\n[INFO]\n...\n```\n\nAlso, if you do `package` or `install` goals, the tests launch automatically.\n\n## Built With\n\n* [Java](http://www.oracle.com/technetwork/java/javase) - is a systems and applications programming language\n\n* [Lombok](https://projectlombok.org) - is a java library that spicing up your java\n\n* [Junit](http://junit.org/junit4/) - is a simple framework to write repeatable tests\n\n* [AssertJ](http://joel-costigliola.github.io/assertj/) - AssertJ provides a rich set of assertions, truly helpful error messages, improves test code readability\n\n* [Maven](https://maven.apache.org) - is a software project management and comprehension tool\n\n## Changelog\n\nTo see what has changed in recent versions of the project, see the [changelog](./CHANGELOG.md) file.\n\n## Contributing\n\nPlease read [contributing](./CONTRIBUTING.md) file for details on my code of conduct, and the process for submitting pull requests to me.\n\n## Versioning\n\nWe use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/appulse-projects/encon-java/tags).\n\n## Authors\n\n* **[Artem Labazin](https://github.com/xxlabaza)** - creator and the main developer\n\n* **[Sokol Andrey](https://github.com/SokolAndrey)** - texts corrector and mastermind\n\n## License\n\nThis project is licensed under the Apache License 2.0 License - see the [license](./LICENSE) file for details\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappulse-projects%2Fencon-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fappulse-projects%2Fencon-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappulse-projects%2Fencon-java/lists"}