{"id":13806219,"url":"https://github.com/bulivlad/vertx-codegen-plugin","last_synced_at":"2026-02-19T06:30:58.464Z","repository":{"id":77899186,"uuid":"183470050","full_name":"bulivlad/vertx-codegen-plugin","owner":"bulivlad","description":"A Gradle plugin to facilitate the codegen usage for Vert.x Java projects","archived":false,"fork":false,"pushed_at":"2020-06-18T20:19:46.000Z","size":87,"stargazers_count":9,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-10-23T15:43:33.692Z","etag":null,"topics":["codegen","gradle-plugin","vert-x","vertx-codegen","vertx3"],"latest_commit_sha":null,"homepage":"","language":"Groovy","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/bulivlad.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2019-04-25T16:18:59.000Z","updated_at":"2020-10-23T17:20:22.000Z","dependencies_parsed_at":"2023-03-12T02:32:10.787Z","dependency_job_id":null,"html_url":"https://github.com/bulivlad/vertx-codegen-plugin","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/bulivlad/vertx-codegen-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bulivlad%2Fvertx-codegen-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bulivlad%2Fvertx-codegen-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bulivlad%2Fvertx-codegen-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bulivlad%2Fvertx-codegen-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bulivlad","download_url":"https://codeload.github.com/bulivlad/vertx-codegen-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bulivlad%2Fvertx-codegen-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29604765,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T05:11:50.834Z","status":"ssl_error","status_checked_at":"2026-02-19T05:11:38.921Z","response_time":117,"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":["codegen","gradle-plugin","vert-x","vertx-codegen","vertx3"],"created_at":"2024-08-04T01:01:09.031Z","updated_at":"2026-02-19T06:30:58.444Z","avatar_url":"https://github.com/bulivlad.png","language":"Groovy","funding_links":[],"categories":["Build tools"],"sub_categories":[],"readme":"# Vert.x Codegen Gradle Plugin for Java projects\n\nA Gradle plugin to _facilitate_ the codegen usage for Vert.x Java projects\n\n[![CircleCI](https://circleci.com/gh/bulivlad/vertx-codegen-plugin.svg?style=svg)](https://circleci.com/gh/bulivlad/vertx-codegen-plugin)\n[![LICENSE](https://img.shields.io/github/license/bulivlad/vertx-codegen-plugin.svg)](https://github.com/bulivlad/vertx-codegen-plugin/blob/master/LICENSE)\n[![GradlePluginPortal](https://img.shields.io/maven-metadata/v/https/plugins.gradle.org/m2/io/dotinc/vertx-codegen-plugin/io.dotinc.vertx-codegen-plugin.gradle.plugin/maven-metadata.xml.svg?label=gradlePluginPortal)](https://plugins.gradle.org/plugin/io.dotinc.vertx-codegen-plugin)\n\n### Why is this plugin helpful\nThis [plugin](https://plugins.gradle.org/plugin/io.dotinc.vertx-codegen-plugin) focus on configuring your gradle project to be ready for Vert.x [Service-Proxy](https://github.com/vert-x3/vertx-service-proxy) usage. It applies the configuration needed for [CodeGen](https://github.com/vert-x3/vertx-codegen) API\n\n### What the plugin does behind the scene\n* Check if the [java](https://docs.gradle.org/current/userguide/java_plugin.html) plugin was applied and abort the execution otherwise\n* Apply the following gradle dependencies with appropriate configuration with regards to the gradle version.\n\t* `io.vertx:vertx-core`\n\t* `io.vertx:vertx-service-proxy`\n\t* `io.vertx:vertx-codegen`\n* Adds a new gradle task `cleanGenerated` which will clean the generated classes. The default `clean` task depends on `cleanGenerated`\n* Adds the compiler attributes needed\n\n| NOTE: | The plugin will only be executed if the `java` plugin was already applied. It will not forcefully apply any `plugin` behind the scenes. |\n| ------------- | :------------- |\n\n### Configuration example\n```groovy\nplugins {\n\tid 'java'\n\tid 'io.dotinc.vertx-codegen-plugin' version 'x.y.z' // (1)\n}\nrepositories {\n    mavenCentral()\n}\ncodeGen {\n\tvertxVersion = 'a.b.c' // (2)\n\tgeneratedDirs = \"src/main/generated\"\n\tgenerationPath = \"proxy\"\n}\n```\n\n(1) Replace `x.y.z` with one of the plugin versions available on the [Gradle Plugin Portal](https://plugins.gradle.org/plugin/io.dotinc.vertx-codegen-plugin)\n\n(2) Replace `a.b.c` with one of the vert.x library versions available on [Maven Central Repository](https://mvnrepository.com/artifact/io.vertx/vertx-core)\n\n### Configuration\n| Options | Description | Default value |\n| ------------- | :------------- | :-----|\n| vertxVersion | The vert.x library version | 3.8.4 |\n| generatedDirs | The path to the generated java classes. The path is relative to the project root | \"src/main/generated\" |\n| generationPath | The specific path to the generated java class | \"proxy\" |\n\n| |  |\n| --- | --- |\n| NOTE:  | Full path to generated proxy classes will be `${generatedDirs}/${generationPath}` |\n| | The `vertxVersion` config will be overridden with `io.vertx:vertx-core` version if it was already included in `build.gradle` file |\n\nThe default values can also be found in [src/main/groovy/io/dotinc/gradle/CodeGenPluginExtension.groovy](https://github.com/bulivlad/vertx-codegen-plugin/blob/master/src/main/groovy/io/dotinc/gradle/CodeGenPluginExtension.groovy)\n\n### Contributing\n\n* Pull requests are welcome.\n* PRs should target the `master` branch.\n\n### Author\n\nVlad Bulimac (buli.vlad@gmail.com)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbulivlad%2Fvertx-codegen-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbulivlad%2Fvertx-codegen-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbulivlad%2Fvertx-codegen-plugin/lists"}