to download the client example of the rover application that was shown at the Eclipse con last month.
I wanted to experiment a little bit with e4 - unfortunately it doesn't compile on my machine.
I tried the latest milestone build, the stable build and the integration build but neither was able to compile the project.
The builder has problems with the apache and xstream projects while trying to build and can't compile the client project. Apparently the annotations used (@PostConstruct, @UIEventHandler) and a couple more classes aren't available.
Is there a working version of that client to start with?
I replaced a couple annotations with annotations of this:
org.eclipse.e4.core.di.annotations.PostConstruct;
and commented out the UIEvents just to see if the product would start but I get an exception saying that there is no ID specified.
If I check plug-in dependencies in the run configuration I get a couple errors. After letting Eclipse resolve them product still isn't starting.
With one of the last integration builds,
the @org.eclipse.e4.core.di.annotations.PostConstruct annotation
was exchanged to @javax.PostContruct, as far as I've seen.
Secondly @UIEventHandler changed to @UIEventTopic (here, I'm kind of not sure).
It's neccessary to use an @javax.Inject annotation.