{"id":19034157,"url":"https://github.com/aurasphere/linkedin-maven-plugin","last_synced_at":"2025-08-22T15:07:36.996Z","repository":{"id":65507501,"uuid":"591697273","full_name":"aurasphere/linkedin-maven-plugin","owner":"aurasphere","description":"In 2023 can you really call yourself a full-stack developer if you are not an influencer?","archived":false,"fork":false,"pushed_at":"2023-01-21T23:32:53.000Z","size":16,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-30T06:02:12.014Z","etag":null,"topics":["continuous-integration","linkedin","maven-plugin"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":false,"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/aurasphere.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":"2023-01-21T15:23:28.000Z","updated_at":"2023-09-04T10:31:12.000Z","dependencies_parsed_at":"2023-02-12T13:10:12.041Z","dependency_job_id":null,"html_url":"https://github.com/aurasphere/linkedin-maven-plugin","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aurasphere/linkedin-maven-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurasphere%2Flinkedin-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurasphere%2Flinkedin-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurasphere%2Flinkedin-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurasphere%2Flinkedin-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aurasphere","download_url":"https://codeload.github.com/aurasphere/linkedin-maven-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurasphere%2Flinkedin-maven-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271657757,"owners_count":24797935,"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-08-22T02:00:08.480Z","response_time":65,"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":["continuous-integration","linkedin","maven-plugin"],"created_at":"2024-11-08T21:43:40.839Z","updated_at":"2025-08-22T15:07:36.967Z","avatar_url":"https://github.com/aurasphere.png","language":"Java","funding_links":["https://www.paypal.com/donate/?cmd=_donations\u0026business=8UK2BZP2K8NSS"],"categories":[],"sub_categories":[],"readme":"[![Github Workflow](https://img.shields.io/github/actions/workflow/status/aurasphere/linkedin-maven-plugin/maven.yml?branch=main)](https://github.com/aurasphere/linkedin-maven-plugin/actions)\n[![Maven Central](https://img.shields.io/maven-central/v/co.aurasphere.maven.plugins/linkedin-maven-plugin.svg)](https://search.maven.org/artifact/co.aurasphere.maven.plugins/linkedin-maven-plugin/1.0.0/jar)\n[![Maintainability](https://api.codeclimate.com/v1/badges/44001e2c5b47062c078d/maintainability)](https://codeclimate.com/github/aurasphere/linkedin-maven-plugin/maintainability)\n[![Join the chat at https://gitter.im/linkedin-maven-plugin/community](https://badges.gitter.im/linkedin-maven-plugin/community.svg)](https://gitter.im/linkedin-maven-plugin/community?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n[![Donate](https://img.shields.io/badge/Donate-PayPal-orange.svg)](https://www.paypal.com/donate/?cmd=_donations\u0026business=8UK2BZP2K8NSS)\n[![Telegram](https://img.shields.io/badge/-telegram-a?color=white\u0026logo=telegram)](https://t.me/+Wy1DPTLyFGg0OWE0)\n\n# LinkedIn Maven Plugin\n\nMaven plugin for posting your build state to LinkedIn.\n\nIn 2023 can you really call yourself a full-stack developer if you are not an influencer?\n\n## Usage\n\n1. Add the plugin to your ```pom.xml``` and configure the phases in which the plugin runs. In the following example, the plugin will post a LinkedIn message after compilation and again after tests (if they pass):\n\n```\n\u003cplugin\u003e\n    \u003cgroupId\u003eco.aurasphere.maven.plugins\u003c/groupId\u003e\n    \u003cartifactId\u003elinkedin-maven-plugin\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.0\u003c/version\u003e\n    \u003cconfiguration\u003e\n        \u003clinkedinAccessToken\u003e${env.LINKEDIN_ACCESS_TOKEN}\u003c/linkedinAccessToken\u003e\n        \u003clinkedinUserId\u003e${env.LINKEDIN_USER_ID}\u003c/linkedinUserId\u003e\n    \u003c/configuration\u003e\n    \u003cexecutions\u003e\n        \u003cexecution\u003e\n            \u003cid\u003epost-compile\u003c/id\u003e\n            \u003cphase\u003ecompile\u003c/phase\u003e\n            \u003cgoals\u003e\n                \u003cgoal\u003epost\u003c/goal\u003e\n            \u003c/goals\u003e\n            \u003cconfiguration\u003e\n                \u003cmessage\u003eToday my code compiles...\u003c/message\u003e\n            \u003c/configuration\u003e\n        \u003c/execution\u003e\n        \u003cexecution\u003e\n            \u003cid\u003epost-test\u003c/id\u003e\n            \u003cphase\u003etest\u003c/phase\u003e\n            \u003cgoals\u003e\n                \u003cgoal\u003epost\u003c/goal\u003e\n            \u003c/goals\u003e\n            \u003cconfiguration\u003e\n                \u003cmessage\u003e...and it even passes all tests!\u003c/message\u003e\n            \u003c/configuration\u003e\n        \u003c/execution\u003e\n    \u003c/executions\u003e\n\u003c/plugin\u003e\n```\n\n2. The ```configuration``` element supports the following parameters:\n\n- **linkedinAccessToken**: your LinkedIn access token. You can obtain one by creating an app on LinkedIn developers and then authenticating yourself into it with Oauth2\n- **linkedinUserId**: your LinkedIn user ID. You can obtain it by following this answer: https://stackoverflow.com/a/69304538/4921205\n- **message**: the message to post to LinkedIn\n\n\u003csub\u003eCopyright (c) 2023 Donato Rimenti\u003c/sub\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faurasphere%2Flinkedin-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faurasphere%2Flinkedin-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faurasphere%2Flinkedin-maven-plugin/lists"}