{"id":23674982,"url":"https://github.com/zaplatynski/java-bom","last_synced_at":"2026-05-19T05:42:01.977Z","repository":{"id":57724408,"uuid":"145543960","full_name":"zaplatynski/java-bom","owner":"zaplatynski","description":"Marian's Java Bill Of Materials","archived":false,"fork":false,"pushed_at":"2018-09-20T18:47:32.000Z","size":36,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-12T16:27:28.796Z","etag":null,"topics":["bill","bom","java","materials","maven"],"latest_commit_sha":null,"homepage":"https://zaplatynski.github.io/java-bom/","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/zaplatynski.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}},"created_at":"2018-08-21T09:54:04.000Z","updated_at":"2020-02-02T09:24:32.000Z","dependencies_parsed_at":"2022-09-02T07:02:26.563Z","dependency_job_id":null,"html_url":"https://github.com/zaplatynski/java-bom","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/zaplatynski/java-bom","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaplatynski%2Fjava-bom","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaplatynski%2Fjava-bom/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaplatynski%2Fjava-bom/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaplatynski%2Fjava-bom/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zaplatynski","download_url":"https://codeload.github.com/zaplatynski/java-bom/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaplatynski%2Fjava-bom/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002619,"owners_count":26083425,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"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":["bill","bom","java","materials","maven"],"created_at":"2024-12-29T13:36:25.904Z","updated_at":"2025-10-10T03:39:16.476Z","avatar_url":"https://github.com/zaplatynski.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"Marian's Java Bill Of Materials [![Build Status](https://travis-ci.org/zaplatynski/java-bom.svg?branch=master)](https://travis-ci.org/zaplatynski/java-bom)\n================================\n\nThis is a bill of materials (BOM) suitable for most OpenSource Java projects as Maven parent pom using Java 8. There is no Java 9+ support at the moment.\n\nIt configures:\n* The Maven Java compiler plugin to a *certain version*, e.g. 8 (1.8)\n* Takes care that all dependencies have *maximum byte code compatible transitive dependencies of certain version* e.g. 8 (1.8)\n* Checks that all *transitive dependencies resolves to common version* and forces the developer to declare it e.g. inside the dependency management.\n* Adds the *Maven information* such as name and ids such as artifact id and group id to the Java's *jar manifest file*\n* Creates additional jar files for *source* and *JavaDoc* as required by Maven Central for easy access of the source code by IDEs such as Eclipse or IDEA\n* Provides *JUnit 5* as unit test engine with support for *JUnit 3* and *JUnit 4* tests so that all unit tests of JUnit 3, 4 and 5 can run at the same time\n* Adds *Mockito, *AssertJ* and *Hamcrest* support for unit tests\n\nHow to add to your Maven project\n--------------------------------\n\nJust reference the BOM as the parent POM in your project's pom.xml:\n\n```xml\n\u003cproject\u003e\n\t\n\t\u003cparent\u003e\n\t\t\u003cgroupId\u003ecom.github.zaplatynski\u003c/groupId\u003e\n\t\t\u003cartifactId\u003ejava-bom\u003c/artifactId\u003e\n\t\t\u003cversion\u003e1.1.2\u003c/version\u003e\n\t\u003c/parent\u003e\n\t\n\t...\n\t\n\u003c/project\u003e\n```\n\nHow to modify a version such as the Java version\n------------------------------------------------\n\nAll versions are stored inside properties for easy adaption e.g. use Java 7 instead of 8:\n\n```xml\n\u003cproject\u003e\n\t\n\t\u003cparent\u003e\n\t\t\u003cgroupId\u003ecom.github.zaplatynski\u003c/groupId\u003e\n\t\t\u003cartifactId\u003ejava-bom\u003c/artifactId\u003e\n\t\t\u003cversion\u003e1.1.2\u003c/version\u003e\n\t\u003c/parent\u003e\n\t\n\t...\n\t\n\t\u003cproperties\u003e\n\t\t\u003cjava.version\u003e1.7\u003c/java.version\u003e\n\t\u003c/properties\u003e\n\t\n\t...\n\t\n\u003c/project\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzaplatynski%2Fjava-bom","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzaplatynski%2Fjava-bom","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzaplatynski%2Fjava-bom/lists"}