{"id":20092046,"url":"https://github.com/maxkratz/maven-tycho-eclipse-example","last_synced_at":"2026-05-15T21:34:34.733Z","repository":{"id":186265838,"uuid":"631865084","full_name":"maxkratz/maven-tycho-eclipse-example","owner":"maxkratz","description":"Example on how to use Maven \u0026 Tycho to build an Eclipse plug-in, feature, and update site.","archived":false,"fork":false,"pushed_at":"2025-07-23T09:58:52.000Z","size":3042,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-23T11:43:38.839Z","etag":null,"topics":["ci","continuous-integration","eclipse","eclipse-plugin","eclipse-repositories","eclipse-update-site","maven","tycho","tycho-maven"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maxkratz.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-04-24T08:17:10.000Z","updated_at":"2025-07-23T09:58:54.000Z","dependencies_parsed_at":"2024-07-25T07:58:54.645Z","dependency_job_id":"04798c64-828d-45b9-84f8-48a151f515ea","html_url":"https://github.com/maxkratz/maven-tycho-eclipse-example","commit_stats":null,"previous_names":["maxkratz/maven-tycho-eclipse-example"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/maxkratz/maven-tycho-eclipse-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxkratz%2Fmaven-tycho-eclipse-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxkratz%2Fmaven-tycho-eclipse-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxkratz%2Fmaven-tycho-eclipse-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxkratz%2Fmaven-tycho-eclipse-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxkratz","download_url":"https://codeload.github.com/maxkratz/maven-tycho-eclipse-example/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxkratz%2Fmaven-tycho-eclipse-example/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267561816,"owners_count":24107738,"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-28T02:00:09.689Z","response_time":68,"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":["ci","continuous-integration","eclipse","eclipse-plugin","eclipse-repositories","eclipse-update-site","maven","tycho","tycho-maven"],"created_at":"2024-11-13T16:35:39.811Z","updated_at":"2026-05-15T21:34:34.729Z","avatar_url":"https://github.com/maxkratz.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Maven Tycho Eclipse example\n\nThis example shows how to build a complete (and functional) [P2](https://www.eclipse.org/equinox/p2/) Eclipse update site with [Maven](https://maven.apache.org/) and [Tycho](https://projects.eclipse.org/projects/technology.tycho).\nIt can be used to create Eclipse update sites from various projects and features *headlessley*, e.g., with the help of a CI pipeline and without the need to run Eclipse tasks manually.\n\n[![CI](https://github.com/maxkratz/maven-tycho-eclipse-example/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/maxkratz/maven-tycho-eclipse-example/actions/workflows/ci.yml)\n\n\n## Structure\n\n| Name                                                           | Type                        | Purpose                                                                                         |\n| -------------------------------------------------------------- | --------------------------- | ----------------------------------------------------------------------------------------------- |\n| [org.example.impl](org.example.impl/)                          | Eclipse (plug-in) project   | Contains the implementation of a feature or an Eclipse plug-in (in this case an empty example). |\n| [org.example.impl.feature](org.example.impl.feature/)          | Eclipse Feature project     | Contains the necessary information for the feature to export.                                   |\n| [org.example.impl.updatesite](org.example.impl.updatesite/)    | Eclipse Update Site project | Contains the update site configuration (to include the feature above).                          |\n| [org.example.impl.dependencies](org.example.impl.dependencies) | Eclipse (plug-in) project   | Contains all necessary dependencies (JARs).                                                     |\n| [org.example.impl.tests](org.example.impl.tests/)              | Eclipse (plug-in) project   | Contains all tests and test-related content.                                                    |\n| [ci.yml](.github/workflows/ci.yml)                             | File                        | Example GitHub Actions configuration to build and push the update site.                         |\n| [pom.xml](pom.xml)                                             | File                        | Maven configuration file that contains the parent group/porject.                                |\n\n\n## How to build\n\nSince this project uses [tycho](https://github.com/eclipse-tycho/tycho) \u003e=v5.0.0, you [need Java 21 to compile it](https://github.com/eclipse-tycho/tycho/blob/tycho-5.0.0/RELEASE_NOTES.md#java-21-required-to-run-tycho-build).\n\n- Build the project + feature + update site:  \n  `$ mvn clean package`\n- Build + install the project to the local `.m2/` folder:  \n  `$ mvn clean install`\n- Run all tests:  \n  `$ mvn clean verify`\n- Change the version of the plug-in to a new semver (e.g., before publishing a new release):  \n  `$ mvn versions:set -DnewVersion=0.0.2-SNAPSHOT`\n\n\n## License\n\nThis project is licensed under the GNU General Public License v3.0 - see the [LICENSE](LICENSE) file for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxkratz%2Fmaven-tycho-eclipse-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxkratz%2Fmaven-tycho-eclipse-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxkratz%2Fmaven-tycho-eclipse-example/lists"}