Skip to main content

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

Hey Mario,

you probably figured that out in the meantime but for the sake of completeness: No, there is no Eclipse feature that bundles exactly these plugins. You have to assemble them exactly as you did.

Best
Sebastian


On Fri, Sep 13, 2019 at 11:44 AM Mario Pierro <Mario.Pierro@xxxxxxx> wrote:
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

_______________________________________________
xtext-dev mailing list
xtext-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://www.eclipse.org/mailman/listinfo/xtext-dev

Back to the top