{"id":25430452,"url":"https://github.com/ak-git/helidonse","last_synced_at":"2026-05-03T18:33:18.290Z","repository":{"id":277038127,"uuid":"931034310","full_name":"ak-git/HelidonSE","owner":"ak-git","description":"Simple HelidonSE \"Hello World\" Application with Gradle and Docker support","archived":false,"fork":false,"pushed_at":"2025-02-11T19:28:36.000Z","size":59,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-11T20:24:14.218Z","etag":null,"topics":["docker","docker-compose","gradle","gradle-java","helidon-se","hello-world","java","java23","jetbrains-idea","renovate","renovate-bot"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/a002k/helidon-se","language":"Java","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ak-git.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}},"created_at":"2025-02-11T16:04:20.000Z","updated_at":"2025-02-11T19:30:01.000Z","dependencies_parsed_at":"2025-02-11T20:34:21.607Z","dependency_job_id":null,"html_url":"https://github.com/ak-git/HelidonSE","commit_stats":null,"previous_names":["ak-git/helidonse"],"tags_count":1,"template":false,"template_full_name":"ak-git/SimpleApp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ak-git%2FHelidonSE","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ak-git%2FHelidonSE/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ak-git%2FHelidonSE/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ak-git%2FHelidonSE/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ak-git","download_url":"https://codeload.github.com/ak-git/HelidonSE/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239228555,"owners_count":19603636,"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":["docker","docker-compose","gradle","gradle-java","helidon-se","hello-world","java","java23","jetbrains-idea","renovate","renovate-bot"],"created_at":"2025-02-17T03:28:20.867Z","updated_at":"2026-05-03T18:33:18.282Z","avatar_url":"https://github.com/ak-git.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple HelidonSE Application with Gradle and Docker support\n\n## A simple service to greet you.\n\nInspired by\n1. https://medium.com/helidon/helidon-injection-4f3321ee7231\n2. https://github.com/helidon-io/helidon-examples/blob/helidon-4.x/examples/quickstarts/helidon-quickstart-inject/src/test/resources/application-test.yaml\n\n\n## Examples:\n\n### Get default greeting message:\n\nhttp://localhost:8080/simple-greet\n\n```shell\ncurl -w \"\\n\" http://localhost:8080/simple-greet\n```\n\nhttp://localhost:8080/greet\n\n```shell\ncurl -w \"\\n\" http://localhost:8080/greet\n```\n\n### Get greeting message for Joe:\n\nhttp://localhost:8080/greet/Joe\n\n```shell\ncurl -w \"\\n\" http://localhost:8080/greet/Joe\n```\n\n### Change greeting\n\n```shell\ncurl -w \"\\n\" -X PUT -d 'Howdy' http://localhost:8080/greet/greeting\n```\n\n## Run using Gradle\n\n```shell\n./gradlew run -t\n```\n\n## [Semantic versioning](https://zoltanaltfatter.com/2020/04/10/semantic-versioning-with-jgitver/)\n\n### Plugin [com.github.jmongard.git-semver-plugin](https://github.com/jmongard/Git.SemVersioning.Gradle)\n\n```shell\n./gradlew printVersion\n```\n\n### Update version\n\n```shell\ngradle releaseVersion\n```\n\n### Add git tag\n\n```shell\ngit tag 2026.04\n```\n\n## Update dependencies\n\n### Plugin [com.github.ben-manes.versions](https://github.com/ben-manes/gradle-versions-plugin)\n\n```shell\n./gradlew dependencyUpdates --no-parallel\n```\n\n## Check dependencies\n\n### Plugin [dependency-analysis-gradle-plugin](https://github.com/autonomousapps/dependency-analysis-gradle-plugin)\n\n```shell\n./gradlew buildHealth\n```\n\n## Run docker image\n\n```shell\ndocker run --rm -p 8080:8080 a002k/helidon-se\n```\n\n```shell\ndocker run -d --name helidon-se --rm -p 8080:8080 a002k/helidon-se\n```\n\n- ```-i``` Keep STDIN open even if not attached\n- ```--rm``` Remove container after stop\n- ```-d``` Detach mode, Run container in background and print container ID\n\nand follow ```-f``` logs\n\n```shell\ndocker logs -f helidon-se\n```\n\nto stop\n\n```shell\ndocker stop helidon-se\n```\n\n## Run docker image as docker-compose\n\n```shell\ndocker compose run -d --name helidon-se --rm helidon-se\n```\n\nUse ```./.env``` file or overwrite as\n\n```shell\nAPP_GREETING=Greet docker compose up -d\n```\n\nand follow ```-f``` logs\n\n```shell\ndocker compose logs -f helidon-se\n```\n\nto stop\n\n```shell\ndocker compose down\n```\n\n[![Github Action Badge](https://github.com/ak-git/HelidonSE/actions/workflows/actions.yml/badge.svg)](https://github.com/ak-git/HelidonSE/actions/workflows/actions.yml/badge.svg)\n\n[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=ak-git_HelidonSE\u0026metric=coverage)](https://sonarcloud.io/summary/new_code?id=ak-git_HelidonSE)\n[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=ak-git_HelidonSE\u0026metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=ak-git_HelidonSE)\n[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=ak-git_HelidonSE\u0026metric=reliability_rating)](https://sonarcloud.io/summary/new_code?id=ak-git_HelidonSE)\n[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=ak-git_HelidonSE\u0026metric=security_rating)](https://sonarcloud.io/summary/new_code?id=ak-git_HelidonSE)\n\n[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=ak-git_HelidonSE\u0026metric=bugs)](https://sonarcloud.io/summary/new_code?id=ak-git_HelidonSE)\n[![Code Smells](https://sonarcloud.io/api/project_badges/measure?project=ak-git_HelidonSE\u0026metric=code_smells)](https://sonarcloud.io/summary/new_code?id=ak-git_HelidonSE)\n[![Duplicated Lines (%)](https://sonarcloud.io/api/project_badges/measure?project=ak-git_HelidonSE\u0026metric=duplicated_lines_density)](https://sonarcloud.io/summary/new_code?id=ak-git_HelidonSE)\n[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=ak-git_HelidonSE\u0026metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=ak-git_HelidonSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fak-git%2Fhelidonse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fak-git%2Fhelidonse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fak-git%2Fhelidonse/lists"}