{"id":20875227,"url":"https://github.com/smallrye/smallrye-maven-plugin","last_synced_at":"2025-05-12T15:31:12.040Z","repository":{"id":37941599,"uuid":"198435038","full_name":"smallrye/smallrye-maven-plugin","owner":"smallrye","description":null,"archived":true,"fork":false,"pushed_at":"2023-07-08T06:51:27.000Z","size":48,"stargazers_count":0,"open_issues_count":0,"forks_count":5,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-05-10T03:47:57.089Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","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/smallrye.png","metadata":{"files":{"readme":"README.adoc","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-07-23T13:21:19.000Z","updated_at":"2023-07-08T06:52:04.000Z","dependencies_parsed_at":"2024-11-18T06:43:36.727Z","dependency_job_id":"b31a2252-0e92-4f64-b9ca-183f010d2042","html_url":"https://github.com/smallrye/smallrye-maven-plugin","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smallrye%2Fsmallrye-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smallrye%2Fsmallrye-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smallrye%2Fsmallrye-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smallrye%2Fsmallrye-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/smallrye","download_url":"https://codeload.github.com/smallrye/smallrye-maven-plugin/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253765828,"owners_count":21960798,"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","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-18T06:43:18.155Z","updated_at":"2025-05-12T15:31:11.707Z","avatar_url":"https://github.com/smallrye.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":":ci: https://github.com/smallrye/smallrye-maven-plugin/actions?query=workflow%3A%22SmallRye+Build%22\n\nimage:https://github.com/smallrye/smallrye-maven-plugin/workflows/SmallRye%20Build/badge.svg?branch=main[link={ci}]\nimage:https://img.shields.io/github/license/smallrye/smallrye-maven-plugin.svg[\"License\", link=\"http://www.apache.org/licenses/LICENSE-2.0\"]\nimage:https://img.shields.io/maven-central/v/io.smallrye/smallrye-maven-plugin?color=green[]\n\n= SmallRye Maven Plugin\n\n== About\n\nThe SmallRye Maven Plugin is a project which aims to provide some automation that\ncan be utilized by SmallRye implementation projects in order to perform common\ntasks.\n\n== Features\n\n=== Goal: `generate-info`\n\nThe `generate-info` goal generates a class in the base package of your project which\ngives version information about that project.  The following configuration parameters\nare supported:\n\n* `specVersion` (required) - The specification version being implemented\nby this project.  In many cases you can directly set this to the value of the property\ncontaining the MicroProfile/Jakarta/etc. spec artifact version.\n* `implementationVersion` (required, defaults to `${project.version}`) - The implementation\nversion.\n* `packageName` (required) - The name of the base package into which the class should be generated.\nTypically this is something like `io.smallrye.projectname`.\n* `className` (required, defaults to `SmallRyeInfo`) - The name of the class to generate.  Normally\nthis should be left to the default value.\n* `sourceOutput` (required, defaults to `${project.build.directory}/generated-sources/smallrye-info`) -\nThis property determines where the generated sources are written.  The directory named by this\nproperty will automatically be added to the project as a source root.\n\n== Usage\n\nThis plugin is intended to be consumed by SmallRye projects (not end user programs).\n\nTo include the plugin in a project, add the following plugin definition to the project POM:\n\n.POM snippet\n[source,xml]\n\u003cplugin\u003e\n    \u003cgroupId\u003eio.smallrye\u003c/groupId\u003e\n    \u003cartifactId\u003esmallrye-maven-plugin\u003c/artifactId\u003e\n    \u003cexecutions\u003e\n        \u003cexecution\u003e\n            \u003cgoals\u003e\n                \u003c!-- add each goal here --\u003e\n            \u003c/goals\u003e\n        \u003cexecution\u003e\n    \u003c/executions\u003e\n    \u003cconfiguration\u003e\n        \u003c!-- add each configuration item here --\u003e\n    \u003c/configuration\u003e\n\u003c/plugin\u003e\n\nSee above for information about the available goals and their configuration parameters.\n\nThe SmallRye parent POM (https://github.com/smallrye/smallrye-parent) should normally be inherited,\nwhich will configure the correct version of this plugin.\n\n=== Example\n\n.POM example\n[source,xml]\n\u003cplugin\u003e\n    \u003cgroupId\u003eio.smallrye\u003c/groupId\u003e\n    \u003cartifactId\u003esmallrye-maven-plugin\u003c/artifactId\u003e\n    \u003cexecutions\u003e\n        \u003cexecution\u003e\n            \u003cgoals\u003e\n                \u003cgoal\u003egenerate-info\u003c/goal\u003e\n            \u003c/goals\u003e\n        \u003cexecution\u003e\n    \u003c/executions\u003e\n    \u003cconfiguration\u003e\n        \u003cpackageName\u003eio.smallrye.projectname\u003c/packageName\u003e\n        \u003cspecVersion\u003e${version.eclipse.microprofile.projectname}\u003c/specVersion\u003e\n    \u003c/configuration\u003e\n\u003c/plugin\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmallrye%2Fsmallrye-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsmallrye%2Fsmallrye-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmallrye%2Fsmallrye-maven-plugin/lists"}