{"id":20884989,"url":"https://github.com/windup/windup-eclipse-plugin","last_synced_at":"2025-05-12T18:31:49.659Z","repository":{"id":9104419,"uuid":"10884720","full_name":"windup/windup-eclipse-plugin","owner":"windup","description":"Windup Eclipse Plugin","archived":false,"fork":false,"pushed_at":"2024-08-07T19:34:53.000Z","size":64300,"stargazers_count":5,"open_issues_count":1,"forks_count":30,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-04-01T10:11:16.575Z","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":"epl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/windup.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"2013-06-23T13:16:40.000Z","updated_at":"2024-08-07T17:43:48.000Z","dependencies_parsed_at":"2023-12-22T02:10:00.775Z","dependency_job_id":"738001b1-8c43-4bfc-9b9a-973a8c46adb9","html_url":"https://github.com/windup/windup-eclipse-plugin","commit_stats":null,"previous_names":[],"tags_count":90,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/windup%2Fwindup-eclipse-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/windup%2Fwindup-eclipse-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/windup%2Fwindup-eclipse-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/windup%2Fwindup-eclipse-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/windup","download_url":"https://codeload.github.com/windup/windup-eclipse-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253798180,"owners_count":21966022,"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-18T08:12:09.291Z","updated_at":"2025-05-12T18:31:45.758Z","avatar_url":"https://github.com/windup.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"windup-eclipse-plugin\n=====================\n\nMigration Toolkit for Applications (MTA) Eclipse Plugin\n\n## Summary\n\n[Windup](https://github.com/windup/windup) is a command-line Application Migration and Modernization assessment tool.\n\nProvides Eclipse integration with the Migration Toolkit for Applications (MTA) project.\n\n## Installing\n\nBefore you can install the Windup plugin, you'll need to have Eclipse installed.\n\nBuilding the project generates a zip archive containing an Eclipse update site under site/target/. You can install the features into Eclipse from the archive via \"Help \u003e Install New Software \u003e Add... \u003e Archive...\".\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/windup-eclipse-plugin.git\n    $ cd windup-eclipse-plugin\n    $ git remote add upstream git://github.com/windup/windup-eclipse-plugin.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## Setup your environment\n\nSetup your local environment with Maven 3.2.x+. See the [Maven local settings.xml](https://developer.jboss.org/wiki/MavenGettingStarted-Developers) for set up of jboss.org repository.\n\n## Building\n\nThis project depends on [jbosstools-base](https://github.com/jbosstools/jbosstools-base) and [jbosstools-forge](https://github.com/jbosstools/jbosstools-forge). The build will also pull in a snapshot build of [Windup](https://github.com/windup/windup). To avoid needing to build the jbosstools projects before building windup-eclipse-plugin,\nbe sure you have added the JBoss repositories to your Maven settings as shown [here](https://raw.githubusercontent.com/windup/windup/master/build/settings.xml).\n\nThis command will then run the build:\n\n    $ mvn clean verify\n\nSince we depend on a snapshot build of windup-distribution, you occasionally may need to run:\n\n    $ mvn -U clean verify\n\nIf you just want to check if things compile/build you can run:\n\n    $ mvn clean verify -DskipTests=true\n\nBut *do not* push changes without having the new and existing unit tests pass!\n\n## Debugging\n\nThe Windup engine is resource intensive.  I found I have had to increase the memory settings when\nlaunching Eclipse from the debugger to keep from running out of memory.\n\nWhen debugging am currently using:\n\t\n    -Xms1024m -Xmx1536m -XX:MaxPermSize=512M\n\nThese settings will need to be optimized at some point.\n\n## Releasing\n\nThese are the steps to release a new version of the plugin\n\n1. Update the version of the plugin to the release version\n```\n    $ mvn org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=2.0.0\n```\n2. Build the plugin\n```\n    $ mvn clean verify\n```\n3. Perform an installation test of the plugin\n4. Test the plugin UI contributions\n5. Commit the release version change\n6. Create a new Github release https://github.com/windup/windup-eclipse-plugin/releases/new\n7. Update the version of the plugin to the next SNAPSHOT\n```\n    $ mvn org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=2.1.0-SNAPSHOT\n```\n8. Commit the snapshot version change\n9. Continue development on next release\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwindup%2Fwindup-eclipse-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwindup%2Fwindup-eclipse-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwindup%2Fwindup-eclipse-plugin/lists"}