-->

Eclipse RCP e4 + Tycho Maven + separate Target Pla

2019-09-12 11:14发布

问题:

I have an e4 RCP project, built with Tycho

My projects consist of: aggregator, parent, product, rcp, and target - as learnt in the vogella tutorials

The target platform points to eclipse update sites, and it's also loaded into eclipse as the default platform.

The app is PLUGIN BASED. I don't really want to add a feature for nothing.

The catch is, the build of product fails because multi-platform plugins like org.eclipse.core.filesystem.hpux.ia64_32
org.eclipse.swt.carbon.macosx
org.eclipse.swt.motif.aix.ppc etc.
are missing.

Also, these plugins are missing from the product file "contents" tab as well. Actually... those were missing from the start, when the project was created.

Shouldn't these be grabbed by the target platform automatically? Along with 4.5, there's no delta pack anymore. There's just those update sites.

  • How do I build this multi-platform app?
  • How do I choose that I only want to build for windows? (ie other configs necessary other than environments section in the parent pom)