{"id":15576607,"url":"https://github.com/abn/forge-maven-plugin","last_synced_at":"2025-07-25T02:38:59.326Z","repository":{"id":8401536,"uuid":"9982633","full_name":"abn/forge-maven-plugin","owner":"abn","description":"Forge Maven Plugin","archived":false,"fork":false,"pushed_at":"2013-04-26T18:35:39.000Z","size":70,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-12T17:36:37.902Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/abn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-05-10T14:05:20.000Z","updated_at":"2017-04-14T11:53:44.000Z","dependencies_parsed_at":"2022-07-31T02:18:06.211Z","dependency_job_id":null,"html_url":"https://github.com/abn/forge-maven-plugin","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/abn/forge-maven-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abn%2Fforge-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abn%2Fforge-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abn%2Fforge-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abn%2Fforge-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abn","download_url":"https://codeload.github.com/abn/forge-maven-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abn%2Fforge-maven-plugin/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266945067,"owners_count":24010492,"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-07-25T02:00:09.625Z","response_time":70,"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":[],"created_at":"2024-10-02T18:52:58.901Z","updated_at":"2025-07-25T02:38:59.305Z","avatar_url":"https://github.com/abn.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Forge Maven Plugin project\n\n## Summary\n\nThe Forge Maven Plugin provides a clean Maven integration with Forge.\nYou can install addons into a specific repository during build time, thus avoiding the need to store addons JARs in your SCM.\n\n## Install\n\nAdd the following to your pom.xml:\n\n      \u003cplugin\u003e\n        \u003cgroupId\u003eorg.jboss.forge\u003c/groupId\u003e\n        \u003cartifactId\u003eforge-maven-plugin\u003c/artifactId\u003e\n        \u003cversion\u003e1.0.0.Alpha3\u003c/version\u003e\n        \u003cexecutions\u003e\n           \u003cexecution\u003e\n              \u003cid\u003edeploy-addons\u003c/id\u003e\n              \u003cphase\u003eprepare-package\u003c/phase\u003e\n              \u003cgoals\u003e\n                 \u003cgoal\u003eaddon-install\u003c/goal\u003e\n              \u003c/goals\u003e\n              \u003cinherited\u003efalse\u003c/inherited\u003e\n              \u003cconfiguration\u003e\n                 \u003caddonRepository\u003e${basedir}/addon-repository\u003c/addonRepository\u003e\n                 \u003caddonIds\u003e\n                    \u003caddonId\u003eorg.jboss.forge:addon-manager,${version.forge}\u003c/addonId\u003e\n                    \u003caddonId\u003eorg.jboss.forge:maven,${version.forge}\u003c/addonId\u003e\n                    \u003caddonId\u003eorg.jboss.forge:projects,${version.forge}\u003c/addonId\u003e\n                 \u003c/addonIds\u003e\n              \u003c/configuration\u003e\n           \u003c/execution\u003e\n        \u003c/executions\u003e\n      \u003c/plugin\u003e\n\nWhere: \n\n    version.forge\n    \nis a maven property with the desired forge version (E.g. 2.0.0.Alpha3)\n\n\n## Get the code\n\nThe easiest way to get started with the code is to [create your own fork](http://help.github.com/forking/),\nand then clone your fork:\n\n    $ git clone git@github.com:\u003cyou\u003e/forge-maven-plugin.git\n    $ cd forge-maven-plugin\n    $ git remote add upstream git://github.com/forge/forge-maven-plugin.git\n\nAt any time, you can pull changes from the upstream and merge them onto your master:\n\n    $ git checkout master               # switches to the 'master' branch\n    $ git pull upstream master          # fetches all 'upstream' changes and merges 'upstream/master' onto your 'master' branch\n    $ git push origin                   # pushes all the updates to your fork, which should be in-sync with 'upstream'\n\nThe general idea is to keep your 'master' branch in-sync with the\n'upstream/master'.\n\n## Building Forge Maven Plugin\n\nTo build _Forge Maven Plugin_ requires specific versions of Java and Maven.\n\nThis command will run the build:\n\n    $ mvn clean verify\n\nIf you just want to check if things compiles/builds you can run:\n\n    $ mvn clean verify -DskipTest=true\n\nBut *do not* push changes without having the new and existing unit tests pass!\n\n## Contribute fixes and features\n\n_Forge Maven Plugin_ is open source, and we welcome anybody that wants to\nparticipate and contribute!\n\nIf you want to fix a bug or make any changes, please log an issue in\nthe [Forge JIRA](https://issues.jboss.org/browse/FORGE)\ndescribing the bug or new feature and give it a component type of\n`Maven Plugin`. Then we highly recommend making the changes on a\ntopic branch named with the JIRA issue number. For example, this\ncommand creates a branch for the FORGE-1234 issue:\n\n\t$ git checkout -b FORGE-1234\n\nAfter you're happy with your changes and a full build (with unit\ntests) runs successfully, commit your changes on your topic branch\n(with good comments). Then it's time to check for any recent changes\nthat were made in the official repository:\n\n\t$ git checkout master               # switches to the 'master' branch\n\t$ git pull upstream master          # fetches all 'upstream' changes and merges 'upstream/master' onto your 'master' branch\n\t$ git checkout FORGE-1234           # switches to your topic branch\n\t$ git rebase master                 # reapplies your changes on top of the latest in master\n\t                                      (i.e., the latest from master will be the new base for your changes)\n\nIf the pull grabbed a lot of changes, you should rerun your build with\ntests enabled to make sure your changes are still good.\n\nYou can then push your topic branch and its changes into your public fork repository:\n\n\t$ git push origin FORGE-1234         # pushes your topic branch into your public fork of Forge Maven Plugin\n\nAnd then [generate a pull-request](http://help.github.com/pull-requests/) where we can\nreview the proposed changes, comment on them, discuss them with you,\nand if everything is good merge the changes right into the official\nrepository.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabn%2Fforge-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabn%2Fforge-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabn%2Fforge-maven-plugin/lists"}