{"id":18322716,"url":"https://github.com/labs64/code-analysis","last_synced_at":"2026-01-28T16:04:06.887Z","repository":{"id":57726038,"uuid":"452173365","full_name":"Labs64/code-analysis","owner":"Labs64","description":null,"archived":false,"fork":false,"pushed_at":"2022-02-01T16:16:00.000Z","size":27,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-08-13T00:04:32.111Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/Labs64.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":".github/CODEOWNERS","security":null,"support":null}},"created_at":"2022-01-26T07:04:28.000Z","updated_at":"2022-01-26T07:44:52.000Z","dependencies_parsed_at":"2022-09-17T14:31:01.555Z","dependency_job_id":null,"html_url":"https://github.com/Labs64/code-analysis","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/Labs64/code-analysis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Labs64%2Fcode-analysis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Labs64%2Fcode-analysis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Labs64%2Fcode-analysis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Labs64%2Fcode-analysis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Labs64","download_url":"https://codeload.github.com/Labs64/code-analysis/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Labs64%2Fcode-analysis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28846767,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"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":[],"created_at":"2024-11-05T18:25:42.601Z","updated_at":"2026-01-28T16:04:06.853Z","avatar_url":"https://github.com/Labs64.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ca href=\"https://netlicensing.io\"\u003e\u003cimg src=\"https://netlicensing.io/img/netlicensing-stage-twitter.jpg\" alt=\"Innovative License Management Solution\"\u003e\u003c/a\u003e\n\n# [Labs64](https://www.labs64.com) Java Code Style\n\n[![Labs64 Java Code Style - CI](https://github.com/Labs64/code-analysis/actions/workflows/code-analysis-ci.yml/badge.svg)](https://github.com/Labs64/code-analysis/actions/workflows/code-analysis-ci.yml)\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.labs64.commons/code-analysis/badge.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/com.labs64.commons/code-analysis)\n[![Apache License 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/Labs64/code-analysis/blob/master/LICENSE)\n[![Labs64 @ LinkedIn](https://img.shields.io/badge/Labs64-0077B5.svg?logo=LinkedIn)](https://www.linkedin.com/company/labs64-gmbh/)\n\n## Quick Start\n\nThe recommended way to get started using [`code-analysis`](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.labs64.commons%22) in your project is with a dependency management system – the snippets below can be copied and pasted into your build configuration.\n\nMaven:\n```xml\n\u003c!-- https://maven.apache.org/plugins/maven-checkstyle-plugin/usage.html --\u003e\n\u003cplugin\u003e\n    \u003cgroupId\u003eorg.apache.maven.plugins\u003c/groupId\u003e\n    \u003cartifactId\u003emaven-checkstyle-plugin\u003c/artifactId\u003e\n    \u003cversion\u003e${maven-checkstyle-plugin.version}\u003c/version\u003e\n    \u003cconfiguration\u003e\n        \u003cconfigLocation\u003elabs64-code-analysis/checkstyle.xml\u003c/configLocation\u003e\n        \u003cfailsOnError\u003efalse\u003c/failsOnError\u003e\n    \u003c/configuration\u003e\n    \u003cexecutions\u003e\n        \u003cexecution\u003e\n            \u003cid\u003echeckstyle\u003c/id\u003e\n            \u003cgoals\u003e\n                \u003cgoal\u003echeck\u003c/goal\u003e\n            \u003c/goals\u003e\n        \u003c/execution\u003e\n    \u003c/executions\u003e\n    \u003cdependencies\u003e\n        \u003cdependency\u003e\n            \u003cgroupId\u003ecom.labs64.commons\u003c/groupId\u003e\n            \u003cartifactId\u003ecode-analysis\u003c/artifactId\u003e\n            \u003cversion\u003e${labs64.code-analysis.version}\u003c/version\u003e\n        \u003c/dependency\u003e\n    \u003c/dependencies\u003e\n\u003c/plugin\u003e\n\n\u003c!-- https://spotbugs.github.io --\u003e\n\u003cplugin\u003e\n    \u003cgroupId\u003ecom.github.spotbugs\u003c/groupId\u003e\n    \u003cartifactId\u003espotbugs-maven-plugin\u003c/artifactId\u003e\n    \u003cversion\u003e${spotbugs-maven-plugin.version}\u003c/version\u003e\n    \u003cconfiguration\u003e\n        \u003cincludeFilterFile\u003elabs64-code-analysis/spotbugs.xml\u003c/includeFilterFile\u003e\n        \u003cfailOnError\u003efalse\u003c/failOnError\u003e\n    \u003c/configuration\u003e\n    \u003cexecutions\u003e\n        \u003cexecution\u003e\n            \u003cid\u003espotbugs\u003c/id\u003e\n            \u003cgoals\u003e\n                \u003cgoal\u003echeck\u003c/goal\u003e\n            \u003c/goals\u003e\n        \u003c/execution\u003e\n    \u003c/executions\u003e\n    \u003cdependencies\u003e\n        \u003cdependency\u003e\n            \u003cgroupId\u003ecom.labs64.commons\u003c/groupId\u003e\n            \u003cartifactId\u003ecode-analysis\u003c/artifactId\u003e\n            \u003cversion\u003e${labs64.code-analysis.version}\u003c/version\u003e\n        \u003c/dependency\u003e\n    \u003c/dependencies\u003e\n\u003c/plugin\u003e\n\n\u003c!-- https://maven.apache.org/plugins/maven-pmd-plugin/usage.html --\u003e\n\u003cplugin\u003e\n    \u003cgroupId\u003eorg.apache.maven.plugins\u003c/groupId\u003e\n    \u003cartifactId\u003emaven-pmd-plugin\u003c/artifactId\u003e\n    \u003cversion\u003e${maven-pmd-plugin.version}\u003c/version\u003e\n    \u003cconfiguration\u003e\n        \u003crulesets\u003e\n            \u003cruleset\u003elabs64-code-analysis/pmd.xml\u003c/ruleset\u003e\n        \u003c/rulesets\u003e\n        \u003cfailOnViolation\u003efalse\u003c/failOnViolation\u003e\n        \u003cprintFailingErrors\u003etrue\u003c/printFailingErrors\u003e\n    \u003c/configuration\u003e\n    \u003cexecutions\u003e\n        \u003cexecution\u003e\n            \u003cid\u003epmd\u003c/id\u003e\n            \u003cgoals\u003e\n                \u003cgoal\u003echeck\u003c/goal\u003e\n            \u003c/goals\u003e\n        \u003c/execution\u003e\n    \u003c/executions\u003e\n    \u003cdependencies\u003e\n        \u003cdependency\u003e\n            \u003cgroupId\u003ecom.labs64.commons\u003c/groupId\u003e\n            \u003cartifactId\u003ecode-analysis\u003c/artifactId\u003e\n            \u003cversion\u003e${labs64.code-analysis.version}\u003c/version\u003e\n        \u003c/dependency\u003e\n    \u003c/dependencies\u003e\n\u003c/plugin\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flabs64%2Fcode-analysis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flabs64%2Fcode-analysis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flabs64%2Fcode-analysis/lists"}