Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[xtext-dev] Runtime feature for Xtend?

Hello,

I am trying to find the correct dependency set for a feature including plugins developed with Xtend version 2.15
The best approach I found so far is for the feature to depend on the runtime plugins directly

      <import plugin="org.eclipse.xtend.lib" version="2.15.0" match="compatible"/>
      <import plugin="org.eclipse.xtend.lib.macro" version="2.15.0" match="compatible"/>
      <import plugin="org.eclipse.xtext.xbase.lib" version="2.15.0" match="compatible"/>

as depending on the entire Xtend sdk feature will also force users to install the UI components
      
      <import feature="org.eclipse.xtend.sdk" version="2.15.0.v20180916-1232" match="compatible"/>

Is there any better way to depend on the Xtend runtime, which only brings in the bare minimum plugins needed to run?

Thanks in advance for your help!

Kind regards,

/Mario Pierro



Back to the top