Is it currently possible to build Eclipse Plugins by Maven AND have nice IDE Integration?

后端 未结 8 751
长情又很酷
长情又很酷 2020-12-24 14:48

I\'m currently evaluating maven to improve our build process. The building and creating of normal jar files works so far, although I\'m not entirely happy with the Maven IDE

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-24 15:42

    Nowadays Tycho allows resolving dependencies based on the built bundles' manifests (required bundles, imported packages, etc.).

    Moreover, Tycho can be configured to use a target platform for the build. This allows using the same target platform for maven and pde builds.

    Since v0.24.0, Tycho can even build POM-less plug-ins and features, avoiding the duplication of version and artifactId metadata.

    In light of the above, and considering that even the Eclipse Platform is built using it for a few years now, Maven Tycho is currently the best way to build an RCP headlessly.

提交回复
热议问题