{"id":16999032,"url":"https://github.com/maxandersen/jbosstools-gitmigration","last_synced_at":"2026-04-05T01:33:52.862Z","repository":{"id":4738685,"uuid":"5887956","full_name":"maxandersen/jbosstools-gitmigration","owner":"maxandersen","description":null,"archived":false,"fork":false,"pushed_at":"2013-11-06T16:22:05.000Z","size":353,"stargazers_count":10,"open_issues_count":2,"forks_count":12,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-12T06:07:20.753Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"acumenbrands/bean_counter","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maxandersen.png","metadata":{"files":{"readme":"README-template.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":"2012-09-20T14:38:56.000Z","updated_at":"2019-06-11T17:55:10.000Z","dependencies_parsed_at":"2022-09-18T10:50:20.379Z","dependency_job_id":null,"html_url":"https://github.com/maxandersen/jbosstools-gitmigration","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/maxandersen/jbosstools-gitmigration","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxandersen%2Fjbosstools-gitmigration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxandersen%2Fjbosstools-gitmigration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxandersen%2Fjbosstools-gitmigration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxandersen%2Fjbosstools-gitmigration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxandersen","download_url":"https://codeload.github.com/maxandersen/jbosstools-gitmigration/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxandersen%2Fjbosstools-gitmigration/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31421869,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T00:25:07.052Z","status":"ssl_error","status_checked_at":"2026-04-05T00:25:05.923Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2024-10-14T04:06:53.102Z","updated_at":"2026-04-05T01:33:52.842Z","avatar_url":"https://github.com/maxandersen.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# The ${project} project\n\n## Summary\n\n${summary}\n\n## Install\n\n_${project}_ is part of [JBoss Tools](http://jboss.org/tools) from\nwhich it can be [downloaded and installed](http://jboss.org/tools/download)\non its own or together with the full JBoss Tools distribution.\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/${githubproject}.git\n    $ cd ${githubproject}\n    $ git remote add upstream git://github.com/jbosstools/${githubproject}.git\n\t\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 ${project}\n\nTo build _${project}_ requires specific versions of Java and\nMaven. Also, there is some Maven setup. The [How to Build JBoss Tools with Maven 3](https://community.jboss.org/wiki/HowToBuildJBossToolsWithMaven3)\ndocument will guide you through that setup.\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_${project}_ 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 [JBoss Tools JIRA](https://issues.jboss.org/browse/JBDE)\ndescribing the bug or new feature and give it a component type of\n`${jiracomponent}`. 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 JBIDE-1234 issue:\n\n\t$ git checkout -b jbide-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 jbide-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 jbide-1234         # pushes your topic branch into your public fork of ${project}\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.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxandersen%2Fjbosstools-gitmigration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxandersen%2Fjbosstools-gitmigration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxandersen%2Fjbosstools-gitmigration/lists"}