Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Compilation error during install

ad Q1:

[ERROR] The method getChildIndex(ITreeNode) of type BaseTreeNode must
override a superclass method

this looks like you compile with source level 1.5.
Source level 1.6 allows @Override on interface method impls.

see compiler docs [1] on how to set source/target level.
If you don't set it explicitly, MANIFEST BREE will be taken into account for compiler source/target level.

Jan

[1] http://eclipse.org/tycho/sitedocs/tycho-compiler-plugin/compile-mojo.html#source 


Back to the top