{"id":15138451,"url":"https://github.com/eclipse-vertx/vertx5-parent","last_synced_at":"2026-02-27T15:44:08.058Z","repository":{"id":244663283,"uuid":"815816356","full_name":"eclipse-vertx/vertx5-parent","owner":"eclipse-vertx","description":"Vert.x 5 Parent pom","archived":false,"fork":false,"pushed_at":"2025-05-12T17:20:40.000Z","size":87,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":11,"default_branch":"main","last_synced_at":"2025-10-19T22:48:00.418Z","etag":null,"topics":["java","maven","vertx"],"latest_commit_sha":null,"homepage":"","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/eclipse-vertx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.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":null,"dco":null,"cla":null}},"created_at":"2024-06-16T08:48:10.000Z","updated_at":"2025-05-12T17:20:43.000Z","dependencies_parsed_at":"2024-06-16T14:46:05.254Z","dependency_job_id":"34ffaac2-7ca6-402c-8af5-9c2d8ea4df39","html_url":"https://github.com/eclipse-vertx/vertx5-parent","commit_stats":{"total_commits":16,"total_committers":2,"mean_commits":8.0,"dds":0.0625,"last_synced_commit":"a0c679543768dd6a41f272e08e0f2ac4e4ddeccd"},"previous_names":["eclipse-vertx/vertx5-parent"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/eclipse-vertx/vertx5-parent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-vertx%2Fvertx5-parent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-vertx%2Fvertx5-parent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-vertx%2Fvertx5-parent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-vertx%2Fvertx5-parent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eclipse-vertx","download_url":"https://codeload.github.com/eclipse-vertx/vertx5-parent/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-vertx%2Fvertx5-parent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29902661,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T14:46:13.553Z","status":"ssl_error","status_checked_at":"2026-02-27T14:46:10.522Z","response_time":57,"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":["java","maven","vertx"],"created_at":"2024-09-26T07:24:03.373Z","updated_at":"2026-02-27T15:44:08.035Z","avatar_url":"https://github.com/eclipse-vertx.png","language":null,"readme":"## Base parent pom for Vert.x 5 projects\n\nThe parent pom defines common default configuration for Vert.x 5 projects:\n\n- Base plugins versions\n- File encoding\n- Java 11 release\n- Install test-jar, sources, test-sources and docs artifacts\n- Vert.x release/snapshots repositories\n- Asciidoc source dir\n- Asciidoc target dir\n- Generated main sources dir\n- Surefire configuration\n  - Run tests with module path\n  - Netty leak detector\n\nThis parent pom provides common default configuration for data object generation and documentation.\n\n### Code generation\n\nThe Java compiler configures the execution of the Vert.x codegen and docgen processors but does not declare their\nexecution, those processors must be configured explicitly by the pom.\n\n```xml\n  \u003cbuild\u003e\n    \u003cpluginManagement\u003e\n      \u003cplugins\u003e\n        \u003cplugin\u003e\n          \u003cartifactId\u003emaven-compiler-plugin\u003c/artifactId\u003e\n          \u003cexecutions\u003e\n            \u003cexecution\u003e\n              \u003cid\u003edefault-compile\u003c/id\u003e\n              \u003cconfiguration\u003e\n                \u003cannotationProcessors\u003e\n                  \u003cannotationProcessor\u003eio.vertx.codegen.CodeGenProcessor\u003c/annotationProcessor\u003e\n                \u003c/annotationProcessors\u003e\n              \u003c/configuration\u003e\n            \u003c/execution\u003e\n          \u003c/executions\u003e\n        \u003c/plugin\u003e\n      \u003c/plugins\u003e\n    \u003c/pluginManagement\u003e\n  \u003c/build\u003e\n```\n\n### Asciidoc\n\nAsciidoc is generated from `src/main/asciidoc` in the `target/asciidoc/java` directory in _Asciidoc_ format at compilation\ntime and can be previewed using the Chrome _Asciidoctor.js_ plugin.\n\n```xml\n  \u003cbuild\u003e\n    \u003cpluginManagement\u003e\n      \u003cplugins\u003e\n        \u003cplugin\u003e\n          \u003cartifactId\u003emaven-compiler-plugin\u003c/artifactId\u003e\n          \u003cexecutions\u003e\n            \u003cexecution\u003e\n              \u003cid\u003edefault-compile\u003c/id\u003e\n              \u003cconfiguration\u003e\n                \u003cannotationProcessors\u003e\n                  \u003cannotationProcessor\u003eio.vertx.docgen.JavaDocGenProcessor\u003c/annotationProcessor\u003e\n                \u003c/annotationProcessors\u003e\n              \u003c/configuration\u003e\n            \u003c/execution\u003e\n          \u003c/executions\u003e\n        \u003c/plugin\u003e\n      \u003c/plugins\u003e\n    \u003c/pluginManagement\u003e\n  \u003c/build\u003e\n```\n\nDocumentation can be generated with `mvn asciidoctor:process-asciidoc` or `mvn asciidoctor:auto-refresh`, the _Asciidoc_ files are transformed to HTML the _target/docs_ directory.\n\nThis documentation shall be packaged in a `-docs.zip` file.\n\n```xml\n  \u003cbuild\u003e\n    \u003cplugin\u003e\n      \u003cplugin\u003e\n        \u003cartifactId\u003emaven-assembly-plugin\u003c/artifactId\u003e\n          \u003cexecutions\u003e\n          \u003cexecution\u003e\n            \u003cid\u003epackage-docs\u003c/id\u003e\n            \u003cgoals\u003e\n              \u003cgoal\u003esingle\u003c/goal\u003e\n            \u003c/goals\u003e\n          \u003c/execution\u003e\n        \u003c/executions\u003e\n      \u003c/plugin\u003e\n    \u003c/plugin\u003e\n  \u003c/build\u003e\n```\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-vertx%2Fvertx5-parent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feclipse-vertx%2Fvertx5-parent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-vertx%2Fvertx5-parent/lists"}