{"id":15772821,"url":"https://github.com/checktor/quality-assurance-parent","last_synced_at":"2026-01-12T06:25:10.017Z","repository":{"id":38029013,"uuid":"502128646","full_name":"checktor/quality-assurance-parent","owner":"checktor","description":"Parent POM including quality assurance plugins.","archived":false,"fork":false,"pushed_at":"2024-07-04T22:21:55.000Z","size":4978,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2024-10-05T15:42:44.847Z","etag":null,"topics":["jacoco","owasp-dependencycheck","spotbugs-scan"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/checktor.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":"2022-06-10T17:33:34.000Z","updated_at":"2024-07-04T22:21:59.000Z","dependencies_parsed_at":"2024-10-25T22:41:07.779Z","dependency_job_id":null,"html_url":"https://github.com/checktor/quality-assurance-parent","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/checktor/quality-assurance-parent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/checktor%2Fquality-assurance-parent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/checktor%2Fquality-assurance-parent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/checktor%2Fquality-assurance-parent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/checktor%2Fquality-assurance-parent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/checktor","download_url":"https://codeload.github.com/checktor/quality-assurance-parent/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/checktor%2Fquality-assurance-parent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28336316,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["jacoco","owasp-dependencycheck","spotbugs-scan"],"created_at":"2024-10-04T15:42:21.239Z","updated_at":"2026-01-12T06:25:09.981Z","avatar_url":"https://github.com/checktor.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# quality-assurance-parent\n\nParent POM designed to ensure a reliable build by explicitly defining specific versions for Java and Maven as well as its basic plugins. Furthermore, it configures quality assurance components such as [JaCoCo](https://github.com/jacoco/jacoco), [OWASP Dependency-Check](https://github.com/jeremylong/DependencyCheck) and [SpotBugs](https://github.com/spotbugs/spotbugs).\n\n## Requirements\n\nThe following build tool versions are required via Maven's enforcer plugin:\n\n* Java 17\n* Maven 3.6.3\n\n## Usage\n\nThis POM is intended to be used as parent POM of your Maven project:\n\n```\n\u003cparent\u003e\n    \u003cgroupId\u003eio.github.checktor\u003c/groupId\u003e\n    \u003cartifactId\u003equality-assurance-parent\u003c/artifactId\u003e\n    \u003cversion\u003e4.0.0\u003c/version\u003e\n\u003c/parent\u003e\n```\n\nIf you already use a parent declaration, e.g. provided by Spring Boot, consider to move it to `\u003cdependencyManagement\u003e` section using `\u003ctype\u003epom\u003c/type\u003e` and `\u003cscope\u003eimport\u003c/scope\u003e`.\n\nIn order to consume a package from GitHub's package registry, you need to define the following additional repository in your project's POM:\n\n```\n\u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003egithub\u003c/id\u003e\n        \u003curl\u003ehttps://maven.pkg.github.com/checktor/quality-assurance-parent\u003c/url\u003e\n    \u003c/repository\u003e\n\u003c/repositories\u003e\n```\n\nIn this case, we use `github` as the repository ID which should match the ID of your GitHub credentials in local `settings.xml` file:\n\n```\n\u003csettings\u003e\n    ...\n    \u003cservers\u003e\n        \u003cserver\u003e\n            \u003cid\u003egithub\u003c/id\u003e\n            \u003cusername\u003eyour_username\u003c/username\u003e\n            \u003cpassword\u003eyour_personal_access_token\u003c/password\u003e\n        \u003c/server\u003e\n    \u003c/servers\u003e\n\u003c/settings\u003e\n```\n\n## OWASP Dependency-Check and SpotBugs filter\n\nThis POM assumes the presence of two files inside a [buildSettings](buildSettings/) folder which are used to define filter rules for vulnerability and bug checks, i.e.\n\n* [dependency-check-filter.xml](buildSettings/dependency-check-filter.xml)\n    * Suppress reporting of specific OWASP vulnerabilities in your dependencies.\n* [spotbugs-filter.xml](buildSettings/spotbugs-filter.xml)\n    * Filter specific bug findings.\n\nIf you want to suppress the reporting of vulnerability `CVE-2016-1000027`, add the following to your [dependency-check-filter.xml](buildSettings/dependency-check-filter.xml) file.\n\n```\n\u003csuppress\u003e\n    \u003ccve\u003eCVE-2016-1000027\u003c/cve\u003e\n\u003c/suppress\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchecktor%2Fquality-assurance-parent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchecktor%2Fquality-assurance-parent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchecktor%2Fquality-assurance-parent/lists"}