{"id":44771621,"url":"https://github.com/lorislab/lorislab-sql-data","last_synced_at":"2026-02-16T05:34:35.528Z","repository":{"id":338097785,"uuid":"1156566176","full_name":"lorislab/lorislab-sql-data","owner":"lorislab","description":"Lightweight SQL data utility","archived":false,"fork":false,"pushed_at":"2026-02-12T20:23:55.000Z","size":51,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-13T03:54:47.171Z","etag":null,"topics":[],"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/lorislab.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-12T19:48:29.000Z","updated_at":"2026-02-12T20:22:47.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lorislab/lorislab-sql-data","commit_stats":null,"previous_names":["lorislab/lorislab-sql-data"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/lorislab/lorislab-sql-data","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorislab%2Florislab-sql-data","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorislab%2Florislab-sql-data/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorislab%2Florislab-sql-data/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorislab%2Florislab-sql-data/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lorislab","download_url":"https://codeload.github.com/lorislab/lorislab-sql-data/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorislab%2Florislab-sql-data/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29500832,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T03:57:51.541Z","status":"ssl_error","status_checked_at":"2026-02-16T03:55:59.854Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2026-02-16T05:34:34.919Z","updated_at":"2026-02-16T05:34:35.521Z","avatar_url":"https://github.com/lorislab.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lorislab-sql-data\n\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)\n[![Maven Central](https://img.shields.io/maven-central/v/org.lorislab.lib/lorislab-sql-data?label=Maven%20Central)](https://search.maven.org/search?q=g:org.lorislab.lib%20AND%20a:lorislab-sql-data)\n[![GitHub Releases](https://img.shields.io/github/v/release/lorislab/lorislab-sql-data?label=GitHub%20Release)](https://github.com/lorislab/lorislab-sql-data/releases)\n\nA small set of annotations and utilities for mapping Java types to SQL structures and generating mapping/metamodel code.\n\n### Modules\n- `data` - runtime annotations and small utilities (contains annotation classes such as `@Entity`, `@Table`, `@Column`, `@Mapper`, etc.).\n- `codegen` - annotation processor / code generator that creates metamodels and mapper classes at compile time.\n\n## Quickstart\n\nAdd the dependency to your `pom.xml` (replace the version with a released version when available):\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eorg.lorislab.lib\u003c/groupId\u003e\n  \u003cartifactId\u003elorislab-sql-data\u003c/artifactId\u003e\n  \u003cversion\u003e{VERSION}\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nIf you use the `codegen` processor, make sure annotation processing is enabled; in Maven it is automatic for `maven-compiler-plugin`.\n\n```xml\n\u003cplugin\u003e\n    \u003cgroupId\u003eorg.apache.maven.plugins\u003c/groupId\u003e\n    \u003cartifactId\u003emaven-compiler-plugin\u003c/artifactId\u003e\n    \u003cconfiguration\u003e\n        \u003cannotationProcessorPaths\u003e\n            \u003cpath\u003e\n                \u003cgroupId\u003eorg.lorislab.quarkus\u003c/groupId\u003e\n                \u003cartifactId\u003equarkus-data-codegen\u003c/artifactId\u003e\n                \u003cversion\u003e{VERSION}\u003c/version\u003e\n            \u003c/path\u003e\n        \u003c/annotationProcessorPaths\u003e\n    \u003c/configuration\u003e\n\u003c/plugin\u003e\n```\n\n## License\n\nThis project is licensed under the Apache License, Version 2.0. See the [LICENSE](LICENSE) for details.\n\n## Contributing\n\nContributions are welcome. See the repository on GitHub: https://github.com/lorislab/lorislab-sql-data\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Florislab%2Florislab-sql-data","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Florislab%2Florislab-sql-data","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Florislab%2Florislab-sql-data/lists"}