{"id":21930477,"url":"https://github.com/xenoterracide/spring-app-commons","last_synced_at":"2026-04-11T03:31:11.776Z","repository":{"id":309407762,"uuid":"1029047219","full_name":"xenoterracide/spring-app-commons","owner":"xenoterracide","description":"Common Functionality for any spring based projects I build","archived":false,"fork":false,"pushed_at":"2026-04-09T22:04:19.000Z","size":2084,"stargazers_count":0,"open_issues_count":7,"forks_count":0,"subscribers_count":0,"default_branch":"develop","last_synced_at":"2026-04-10T00:16:35.097Z","etag":null,"topics":["auto-updated","java","jpms","spring","spring-boot","spring-data-jpa","spring-graphql","spring-security"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xenoterracide.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSES/AGPL-3.0-or-later.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,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-07-30T12:50:38.000Z","updated_at":"2026-04-04T03:51:47.000Z","dependencies_parsed_at":"2025-08-11T19:31:50.646Z","dependency_job_id":"4c171919-db48-410e-8450-bfc7adf01050","html_url":"https://github.com/xenoterracide/spring-app-commons","commit_stats":null,"previous_names":["xenoterracide/spring-app-commons"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/xenoterracide/spring-app-commons","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xenoterracide%2Fspring-app-commons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xenoterracide%2Fspring-app-commons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xenoterracide%2Fspring-app-commons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xenoterracide%2Fspring-app-commons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xenoterracide","download_url":"https://codeload.github.com/xenoterracide/spring-app-commons/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xenoterracide%2Fspring-app-commons/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31668046,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T17:19:37.612Z","status":"online","status_checked_at":"2026-04-11T02:00:05.776Z","response_time":54,"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":["auto-updated","java","jpms","spring","spring-boot","spring-data-jpa","spring-graphql","spring-security"],"created_at":"2024-11-28T23:09:40.728Z","updated_at":"2026-04-11T03:31:11.767Z","avatar_url":"https://github.com/xenoterracide.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\nSPDX-FileCopyrightText: Copyright © 2024-2026 Caleb Cushing\n\nSPDX-License-Identifier: CC-BY-NC-4.0\n--\u003e\n\n# README\n\n## Contributing\n\n### Languages\n\n[asdf](https://asdf-vm.com) and [direnv](https://direnv.net) are suggested, but you can use whatever you'd like to get\n\n- Java\n- Ktlint\n- NodeJs\n- Python\n\nversions are committed in `.tool-versions`, simply following the major versions there will work.\n\nadd a way to export these to your `PATH` in your `~/.profile` so that commit hooks in your IDE works.\n\n### Build Tools\n\n- [Gradle](https://docs.gradle.org/current/userguide/command_line_interface.html)\n- [Yarn 4](https://yarnpkg.com/getting-started/install) (via Corepack)\n\n#### Fetching Dependencies\n\nIn order to get snapshots of dependencies, you must have a GitHub token in your `~/.gradle/gradle.properties` file. This\nfile should look like:\n\n```properties\nghUsername=\u003cyour username\u003e\nghPassword=\u003cyour token\u003e\n```\n\nYou should generate your PAT\nas [Github Documents here](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-gradle-registry#authenticating-to-github-packages).\n\n\u003e a personal access token (classic) with at least read:packages scope to install packages associated with other private\n\u003e repositories (which GITHUB_TOKEN can't access).\n\nThen run.\n\n```sh\n# Enable Corepack, install Node dev tools, run postinstall, then verify Gradle deps\ncorepack enable\nyarn install --immutable --inline-builds --check-resolutions\nyarn run -T postinstall\n./gradlew dependencies\n```\n\nIf you need to run the postinstall step directly, you can recreate and use the Python lock file via pip-compile (PEP 621):\n\n```sh\n# Regenerate requirements.txt from PEP 621 dependencies in pyproject.toml\npip-compile -o requirements.txt pyproject.toml\n\n# Then install and set up commit hooks\npip install -r requirements.txt \u0026\u0026 git config core.hooksPath .config/git/hooks\n```\n\n### Committing\n\nUse [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/).\n\n## Licenses\n\n- Java: SPDX-Identifier( [AGPL-3.0-or-later](https://choosealicense.com/licenses/agpl-3.0/)\n  WITH [Universal-FOSS-exception-1.0](https://spdx.org/licenses/Universal-FOSS-exception-1.0.html)\n  AND [CC BY 4.0](https://choosealicense.com/licenses/cc-by-4.0/) )\n  OR [CC-BY-NC-4.0](https://creativecommons.org/licenses/by-nc/4.0/)\\\n  For clarity the intent here is to maintain this software for _any_ open source and non-commercial use. Attribution is\n  required. If you would like to use this for commercial purposes please contact me.\n- Gradle Kotlin and Config Files: [MIT](https://choosealicense.com/licenses/mit/)\n- Documentation including Javadoc: [CC-BY-NC-4.0](https://creativecommons.org/licenses/by-nc/4.0/)\n\nCopyright © 2025 Caleb Cushing.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxenoterracide%2Fspring-app-commons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxenoterracide%2Fspring-app-commons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxenoterracide%2Fspring-app-commons/lists"}