{"id":22144877,"url":"https://github.com/hndrs/gradle-publishing-info-plugin","last_synced_at":"2026-04-16T19:34:12.482Z","repository":{"id":40383368,"uuid":"337817042","full_name":"hndrs/gradle-publishing-info-plugin","owner":"hndrs","description":"Gradle plugin that simplifies adding publishing info to your libraries","archived":false,"fork":false,"pushed_at":"2023-09-22T17:57:38.000Z","size":133,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-29T17:24:21.304Z","etag":null,"topics":["gradle","gradle-kotlin-dsl","gradle-multi-project","gradle-plugin","gradle-publish","kotlin","maven","maven-plugin","maven-publish","publishing"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hndrs.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,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-02-10T18:32:36.000Z","updated_at":"2023-05-30T07:18:45.000Z","dependencies_parsed_at":"2024-12-02T02:33:56.543Z","dependency_job_id":null,"html_url":"https://github.com/hndrs/gradle-publishing-info-plugin","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hndrs%2Fgradle-publishing-info-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hndrs%2Fgradle-publishing-info-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hndrs%2Fgradle-publishing-info-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hndrs%2Fgradle-publishing-info-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hndrs","download_url":"https://codeload.github.com/hndrs/gradle-publishing-info-plugin/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245267567,"owners_count":20587459,"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":["gradle","gradle-kotlin-dsl","gradle-multi-project","gradle-plugin","gradle-publish","kotlin","maven","maven-plugin","maven-publish","publishing"],"created_at":"2024-12-01T22:34:40.922Z","updated_at":"2026-04-16T19:34:07.436Z","avatar_url":"https://github.com/hndrs.png","language":"Kotlin","funding_links":["https://github.com/sponsors/marvinschramm"],"categories":[],"sub_categories":[],"readme":"[![Maven metadata URL](https://img.shields.io/maven-metadata/v?color=green\u0026label=GRADLE%20PLUGIN\u0026metadataUrl=https%3A%2F%2Fplugins.gradle.org%2Fm2%2Fio%2Fhndrs%2Fpublishing-info%2Fio.hndrs.publishing-info.gradle.plugin%2Fmaven-metadata.xml\u0026style=for-the-badge)](https://plugins.gradle.org/plugin/io.hndrs.publishing-info)\n[![Coverage](https://img.shields.io/sonar/coverage/hndrs_gradle-publishing-info-plugin?server=https%3A%2F%2Fsonarcloud.io\u0026style=for-the-badge)](https://sonarcloud.io/dashboard?id=hndrs_gradle-publishing-info-plugin)\n[![Supported Java Version](https://img.shields.io/badge/Supported%20Java%20Version-17%2B-informational?style=for-the-badge)]()\n[![Sponsor](https://img.shields.io/static/v1?logo=GitHub\u0026label=Sponsor\u0026message=%E2%9D%A4\u0026color=ff69b4\u0026style=for-the-badge)](https://github.com/sponsors/marvinschramm)\n\n# Gradle Publishing Info\n\nThis is a small helper plugin to add meta information to maven publications.\n\n## Using the Plugin\n\nAdd the following dependency to your plugin block in your rootProject\n\n```kotlin\nplugins {\n    id(\"io.hndrs.publishing-info\").version(\"3.1.0\")\n}\n```\n\nThe Plugin automatically registers a ```publishingInfo``` extension on all projects\n\n#### Configuring the RootProject\n\n```kotlin\npublishingInfo {\n    name = \"Root Project\"\n    description = \"Sample RootProject Description\"\n    inceptionYear = \"2021\"\n    url = \"https://github.com/hndrs/gradle-publishing-info-plugin\"\n    license = License(\n        \"https://github.com/hndrs/gradle-publishing-info-plugin/blob/main/LICENSE\",\n        \"MIT License\"\n    )\n    developers = listOf(\n        Developer(\"maintainerid\", \"Maintainers Name\", \"maintainer@email.com\")\n    )\n    contributers = listOf(\n        Contributor(\"Contributer Name\", \"contributers email\")\n    )\n    organization = Organization(\"Your Org\", \"https://yourdomain.com\")\n    scm = Scm(\n        \"scm:git:git://github.com/hndrs/gradle-publishing-info-plugin\",\n        \"https://github.com/hndrs/gradle-publishing-info-plugin\"\n    )\n}\n```\n\n\u003e RootProject gradle file (build.gradle.kts)\n\n#### Configuring SubProjects\n\n```kotlin\npublishingInfo {\n    // applies all values from rootProject publishingInfo block\n    applyFromRoot = true\n    // overrides name\n    name = \"Sub Project\"\n    // overrides description\n    description = \"Sample SubProject Description\"\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhndrs%2Fgradle-publishing-info-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhndrs%2Fgradle-publishing-info-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhndrs%2Fgradle-publishing-info-plugin/lists"}