{"id":37461067,"url":"https://github.com/extenda/hiiretail-gcp-storage-java","last_synced_at":"2026-01-16T07:03:35.687Z","repository":{"id":244355219,"uuid":"747254244","full_name":"extenda/hiiretail-gcp-storage-java","owner":"extenda","description":"Support lib for applications relying on GCP Cloud Storage","archived":false,"fork":false,"pushed_at":"2024-06-14T06:59:06.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":15,"default_branch":"master","last_synced_at":"2024-06-14T07:55:25.872Z","etag":null,"topics":["java-libs"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/extenda.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":"2024-01-23T15:17:56.000Z","updated_at":"2024-06-14T07:55:31.476Z","dependencies_parsed_at":"2024-06-14T08:06:44.830Z","dependency_job_id":null,"html_url":"https://github.com/extenda/hiiretail-gcp-storage-java","commit_stats":null,"previous_names":["extenda/hiiretail-gcp-storage-java"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/extenda/hiiretail-gcp-storage-java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extenda%2Fhiiretail-gcp-storage-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extenda%2Fhiiretail-gcp-storage-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extenda%2Fhiiretail-gcp-storage-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extenda%2Fhiiretail-gcp-storage-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/extenda","download_url":"https://codeload.github.com/extenda/hiiretail-gcp-storage-java/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/extenda%2Fhiiretail-gcp-storage-java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478000,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T06:30:42.265Z","status":"ssl_error","status_checked_at":"2026-01-16T06:30:16.248Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["java-libs"],"created_at":"2026-01-16T07:03:35.591Z","updated_at":"2026-01-16T07:03:35.672Z","avatar_url":"https://github.com/extenda.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Extenda Hii Retail GCP Storage client\nA Google Cloud Platform Storage client implemented for JDK 21+ (Virtual threads).\n\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=extenda_hiiretail-gcp-storage-java\u0026metric=alert_status\u0026token=38cd6e4249d32992ab84592be19958602fb47b4d)](https://sonarcloud.io/dashboard?id=extenda_hiiretail-gcp-storage-java)\n[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=extenda_hiiretail-gcp-storage-java\u0026metric=coverage\u0026token=38cd6e4249d32992ab84592be19958602fb47b4d)](https://sonarcloud.io/dashboard?id=extenda_hiiretail-gcp-storage-java)\n[![Code Smells](https://sonarcloud.io/api/project_badges/measure?project=extenda_hiiretail-gcp-storage-java\u0026metric=code_smells\u0026token=38cd6e4249d32992ab84592be19958602fb47b4d)](https://sonarcloud.io/dashboard?id=extenda_hiiretail-gcp-storage-java)\n\n## :nut_and_bolt: Configuration\n\nThe library supports changing these settings, via environmental variables:\n\n* `SERVICE_PROJECT_ID`\n\n  The value of your GCP project id. Using `test-project` if not set.\n\n* `STORAGE_EMULATOR_HOST`\n\n  The host url to the emulator. ***Can also be set as system property, e.g. in tests.***\n\n### Docker compose example\n\n```yaml\nservices:\n  cloudstorage:\n    image: oittaa/gcp-storage-emulator\n    command: \u003e\n      start\n        --default-bucket=test-bucket\n        --host 0.0.0.0\n        --port 9023\n    environment:\n      STORAGE_DIR: cloudstorage\n    volumes:\n      - ./cloudstorage:/cloudstorage\n    ports:\n      - \"9023:9023\"\n```\n\n## :notebook_with_decorative_cover: Usage\n\n```xml\n\u003cdependencyManagement\u003e\n  \u003cdependencies\u003e\n    \u003cdependency\u003e\n      \u003cgroupId\u003ecom.google.cloud\u003c/groupId\u003e\n      \u003cartifactId\u003elibraries-bom\u003c/artifactId\u003e\n      \u003cversion\u003e${version.google-cloud}\u003c/version\u003e\n      \u003ctype\u003epom\u003c/type\u003e\n      \u003cscope\u003eimport\u003c/scope\u003e\n    \u003c/dependency\u003e\n  \u003c/dependencies\u003e\n\u003c/dependencyManagement\u003e\n\n\u003cdependencies\u003e\n  \u003cdependency\u003e\n    \u003cgroupId\u003ecom.google.cloud\u003c/groupId\u003e\n    \u003cartifactId\u003egoogle-cloud-storage\u003c/artifactId\u003e\n  \u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\n\nThe library uses `SLF4J` as logging API, so make sure you have `log4j[2]` or `logback` or other\ncompatible implementation on the classpath.\n\n## :scroll: Usage\n\nTBD\n\n## :wrench: Local development environment\n\n* JDK 21+\n* Python / pre-commit\n\n### Building\n\n```bash\n$ mvn clean package\n```\n\n```bash\n$ mvn verify\n```\n\n#### Install and run the pre-commit hooks before you submit code:\n\n```bash\n$ pre-commit install -t pre-commit -t commit-msg\n```\n\n## :information_desk_person: Contribution\n\nContributions to the project are welcome, but must adhere to a few guidelines:\n\n * [Conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) should be followed\n * Install and use a `editorconfig` plugin to use the project supplied settings\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fextenda%2Fhiiretail-gcp-storage-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fextenda%2Fhiiretail-gcp-storage-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fextenda%2Fhiiretail-gcp-storage-java/lists"}