Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [lsp4e-dev] 4.6 compatibility

Thanks a lot, Martin.

I forgot that the target was in the repo, I was using my own and yes, it was the WikiText stuff that tripped me. Thanks!

regards,
Vlad


On Thu, Aug 31, 2017 at 9:39 AM, Martin Lippert <mlippert@xxxxxxxxx> wrote:
Hey Vlad,

> This is addressed to Martin, but might be useful to have the answer in a public forum.
>
> Could you please describe how you got lsp4e working with 4.6? I had it working too for a while ago, then took a pause from it and when coming back it had stopped working because of incompatible dependencies. Thanks!

the target platform for the 4.6 compatibility is defined here:

http://git.eclipse.org/c/gerrit/lsp4e/lsp4e.git/tree/target-platforms/target-platform-neon/target-platform-neon.target

I assume this is the important piece that got added a while ago:

<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.mylyn.wikitext_feature.feature.group" version="0.0.0"/>
<repository location="http://download.eclipse.org/mylyn/docs/releases/3.0"/>
</location>

You need a Mylyn wikitext version that is newer than the one that got shipped with Neon.
Since the 3.0 release of it is compatible with Neon, you just need to grab the pieces from there.

Another important piece is:

<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="com.google.gson" version="2.7.0.v20170129-0911"/>
<repository location="http://download.eclipse.org/tools/orbit/R-builds/R20170307180635/repository"/>
</location>

It is a requirement of the Mylyn bits, I think.

Hope this helps!
-Martin





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

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


Back to the top