Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » e(fx)clipse » e(fx)clipse nightly are based on Luna
e(fx)clipse nightly are based on Luna [message #1239459] Tue, 04 February 2014 08:53 Go to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
Hi,

The nightly builds of e(fx)clipse are npt based upon Luna! This is true
for all parts - the tooling and runtime.

Luna will be the only target and tooling platform supported by us out of
the box for 1.0.0 - I really don't see a big reason to support Kepler as
a tooling platform.

Luna comes with a completely rewritten Equinox and so the adapter hooks
have been adjusted.

You won't be able to install 1.0.0 nightlies into your Kepler-SR1/SR2
anymore. The all-in-one downloads [1] are based on Luna-M5. We'll
publish an 4.3.2+0.9.0 download once Kepler-SR2 has been declared.

Tom

[1]http://downloads.efxclipse.bestsolution.at/downloads/nightly/sdk/
Re: e(fx)clipse nightly are based on Luna [message #1239702 is a reply to message #1239459] Tue, 04 February 2014 20:48 Go to previous messageGo to next message
Alexander Nyssen is currently offline Alexander NyssenFriend
Messages: 244
Registered: July 2009
Location: Lünen
Senior Member
Is there any place I can still consume a 0.9.0 build before it has been switched to Luna?

The reason I ask is that my Kepler target is now broken and I do not yet want to update to Luna. I was using the nightly because when I use the version from http://download.eclipse.org/efxclipse/updates-released/0.9.0/site/ in my target, when starting an Eclipse runtime (using -Dosgi.framework.extensions=org.eclipse.fx.osgi ), I get the following exception:

!ENTRY org.eclipse.osgi 4 0 2014-02-04 21:47:03.676
!MESSAGE error loading hook: org.eclipse.fx.osgi.fxloader.FXClassloaderConfigurator
!STACK 0
java.lang.NoClassDefFoundError: org/eclipse/osgi/internal/hookregistry/HookConfigurator
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:800)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:449)
at java.net.URLClassLoader.access$100(URLClassLoader.java:71)
at java.net.URLClassLoader$1.run(URLClassLoader.java:361)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:190)
at org.eclipse.osgi.baseadaptor.HookRegistry.loadConfigurators(HookRegistry.java:176)
at org.eclipse.osgi.baseadaptor.HookRegistry.initialize(HookRegistry.java:100)
at org.eclipse.osgi.baseadaptor.BaseAdaptor.<init>(BaseAdaptor.java:98)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
at org.eclipse.core.runtime.adaptor.EclipseStarter.createAdaptor(EclipseStarter.java:738)
at org.eclipse.core.runtime.adaptor.EclipseStarter.startup(EclipseStarter.java:259)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
at org.eclipse.equinox.launcher.Main.main(Main.java:1426)
Caused by: java.lang.ClassNotFoundException: org.eclipse.osgi.internal.hookregistry.HookConfigurator
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
... 31 more

The nightly version that was available up to Monday did not show this error.
Re: e(fx)clipse nightly are based on Luna [message #1239721 is a reply to message #1239702] Tue, 04 February 2014 21:57 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
Hi,

Just installed from the update-site into a fresh Eclipse Kepler SR1 from
the update-site without problems!

Are you sure the correct fragment is loaded and not something bogus like
the 1.0.0 version is cached somewhere?

I ask because in Kepler the base interface HookConfigurator is
*org.eclipse.osgi.baseadaptor.HookConfigurator* which 0.9.0
org.eclipse.fx.osgi.fxloader.FXClassLoadingConfigurator is implementing!

This changed to
*org.eclipse.osgi.internal.hookregistry.HookConfigurator* in Luna/efx
1.0.0 which you are seeing in your stacktrace!

To me it looks like you are trying to load the 1.0.0 hook fragment on
Kepler but the 1.0.0 fragment is clearly NOT in the 0.9.0 repo!

Tom

On 04.02.14 21:48, Alexander Nyssen wrote:
> Is there any place I can still consume a 0.9.0 build before it has been
> switched to Luna?
> The reason I ask is that my Kepler target is now broken and I do not yet
> want to update to Luna. I was using the nightly because when I use the
> version from
> http://download.eclipse.org/efxclipse/updates-released/0.9.0/site/ in my
> target, when starting an Eclipse runtime (using
> -Dosgi.framework.extensions=org.eclipse.fx.osgi ), I get the following
> exception:
>
> !ENTRY org.eclipse.osgi 4 0 2014-02-04 21:47:03.676
> !MESSAGE error loading hook:
> org.eclipse.fx.osgi.fxloader.FXClassloaderConfigurator
> !STACK 0
> java.lang.NoClassDefFoundError:
> org/eclipse/osgi/internal/hookregistry/HookConfigurator
> at java.lang.ClassLoader.defineClass1(Native Method)
> at java.lang.ClassLoader.defineClass(ClassLoader.java:800)
> at
> java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
> at java.net.URLClassLoader.defineClass(URLClassLoader.java:449)
> at java.net.URLClassLoader.access$100(URLClassLoader.java:71)
> at java.net.URLClassLoader$1.run(URLClassLoader.java:361)
> at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
> at java.security.AccessController.doPrivileged(Native Method)
> at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
> at java.lang.Class.forName0(Native Method)
> at java.lang.Class.forName(Class.java:190)
> at
> org.eclipse.osgi.baseadaptor.HookRegistry.loadConfigurators(HookRegistry.java:176)
>
> at
> org.eclipse.osgi.baseadaptor.HookRegistry.initialize(HookRegistry.java:100)
> at org.eclipse.osgi.baseadaptor.BaseAdaptor.<init>(BaseAdaptor.java:98)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native
> Method)
> at
> sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
>
> at
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
>
> at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.createAdaptor(EclipseStarter.java:738)
>
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.startup(EclipseStarter.java:259)
>
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
>
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
>
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>
> at java.lang.reflect.Method.invoke(Method.java:606)
> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1426)
> Caused by: java.lang.ClassNotFoundException:
> org.eclipse.osgi.internal.hookregistry.HookConfigurator
> at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
> at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
> at java.security.AccessController.doPrivileged(Native Method)
> at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
> ... 31 more
>
> The nightly version that was available up to Monday did not show this
> error.
Re: e(fx)clipse nightly are based on Luna [message #1249512 is a reply to message #1239459] Tue, 18 February 2014 10:18 Go to previous messageGo to next message
Filip Deleersnijder is currently offline Filip DeleersnijderFriend
Messages: 10
Registered: October 2013
Junior Member
We are having the same problem (java.lang.NoClassDefFoundError: org/eclipse/osgi/internal/hookregistry/HookConfigurator).

I am also quite sure that we are using the 0.9-rc1 as you can see in the provided screenshots:

https://www.dropbox.com/s/a20wo650uyml49l/InstalledSoftware.png
https://www.dropbox.com/s/vcsw85gvrsfsqcj/TargetPlatform.png

Are the nightlies considered to be as stable as before the jump to Luna ? Or is there a good reason to try to keep on using Kepler ?


Re: e(fx)clipse nightly are based on Luna [message #1249535 is a reply to message #1249512] Tue, 18 February 2014 10:46 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
On 18.02.14 11:18, Filip Deleersnijder wrote:
> We are having the same problem (java.lang.NoClassDefFoundError:
> org/eclipse/osgi/internal/hookregistry/HookConfigurator).
>
> I am also quite sure that we are using the 0.9-rc1 as you can see in the
> provided screenshots:
>
> https://www.dropbox.com/s/a20wo650uyml49l/InstalledSoftware.png
> https://www.dropbox.com/s/vcsw85gvrsfsqcj/TargetPlatform.png
>

I have no freaking idea what's happening there - your settings look
perfectly ok to me :-(

> Are the nightlies considered to be as stable as before the jump to Luna
> ? Or is there a good reason to try to keep on using Kepler ?
>

The nightlies are stable - the only thing different is that the runtime
does not support Java7 anymore but requires Java8!

Tom
Re: e(fx)clipse nightly are based on Luna [message #1250814 is a reply to message #1239459] Wed, 19 February 2014 16:28 Go to previous messageGo to next message
Filip Deleersnijder is currently offline Filip DeleersnijderFriend
Messages: 10
Registered: October 2013
Junior Member
We the same problem. We tried without success:

- A clean install from a clean eclipse installation from eclipse.org
- A newly downloaded eclipse from a prepackaged binary from (http://efxclipse.bestsolution.at/install.html)

Then we checked our complete codebase out in a new workspace, which seems to have fixed the problem.
After this clean checkout, all the previously tested eclipse installations could successfully load and run our program in the new workspace.
Re: e(fx)clipse nightly are based on Luna [message #1288432 is a reply to message #1239459] Tue, 08 April 2014 14:59 Go to previous messageGo to next message
Claus Hoeltzcke is currently offline Claus HoeltzckeFriend
Messages: 4
Registered: April 2014
Junior Member
Hi,

first of all, I am new to JavaFX and e(fx)clipse.

Starting off I tested fx with Kepler, installed 0.9 via the update site - all worked perfectly.

Since I need some controls only available in Java 8 (DatePicker ...) I tested the "AllInOne" Luna SDK provided here. Probably I did something wrong, but I cannot find any FX plugins, e.g. to create a new FX project.

It would be great if you could give me a hint to solve my problem.

Thanks in advance, bye Claus
Re: e(fx)clipse nightly are based on Luna [message #1288610 is a reply to message #1288432] Tue, 08 April 2014 18:23 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
Hi,

Well first of 0.9.0 also support Java8 so you could still go with it.

On your Luna All-In-One problem can you make sure your Eclipse IDE is
launched using Java8 - see "Nightly Builds of Tooling & Runtime require
JavaSE-8" in this group.

All bundles now require the IDE itself run on Java8. You can find out
which java was used to launch your IDE with Help > About Eclipse SDK >
Installation Details, if it is the wrong java you can force eclipse to
launch with a specific one using -vm %PATH_TO_YOUR_JAVA_EXE%

Tom

On 08.04.14 17:35, Claus Hoeltzcke wrote:
> Hi,
>
> first of all, I am new to JavaFX and e(fx)clipse.
>
> Starting off I tested fx with Kepler, installed 0.9 via the update site
> - all worked perfectly.
>
> Since I need some controls only available in Java 8 (DatePicker ...) I
> tested the "AllInOne" Luna SDK provided here. Probably I did something
> wrong, but I cannot find any FX plugins, e.g. to create a new FX project.
>
> It would be great if you could give me a hint to solve my problem.
>
> Thanks in advance, bye Claus
Re: e(fx)clipse nightly are based on Luna [message #1289205 is a reply to message #1288610] Wed, 09 April 2014 06:00 Go to previous messageGo to next message
Claus Hoeltzcke is currently offline Claus HoeltzckeFriend
Messages: 4
Registered: April 2014
Junior Member
Hi Tom,

thanks for your quick answer.
I know Kepler has the Java8 option, but sooner or later I would switch to Luna anyway - now its sooner.

I did run all with Java8 (jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014). Only with the first startup of Luna a Java7 was used for the project itself, since the previous workspace settings where from Kepler.
Could that be the problem - migrating the Kepler workspace to Luna?

However, as I understand, I should see beyond 'New Project' the option to create a JavaFX project like in Kepler.
There seems also no editor for opening/running the fxbuild file, the way I seen it in Kepler.
In Kepler two libraries where listed in the project tree. The FX lib and the JRE. With Luna I only see the JRE - is that correct?

The 'Installed Software' dialog in Luna lists (looks OK to me):
e(fx)clipse - IDE 1.0.0.201404070704 org.eclipse.fx.ide.feature.feature.group BestSolution.at
e(fx)clipse - IDE - Basic 1.0.0.201404070704 org.eclipse.fx.ide.basic.feature.feature.group BestSolution.at
e(fx)clipse - IDE - Converter 1.0.0.201404070704 org.eclipse.fx.ide.converter.feature.feature.group BestSolution.at
e(fx)clipse - IDE - CSS 1.0.0.201404070704 org.eclipse.fx.ide.css.feature.feature.group BestSolution.at
e(fx)clipse - IDE - FXGraph 1.0.0.201404070704 org.eclipse.fx.ide.fxgraph.feature.feature.group BestSolution.at
e(fx)clipse - IDE - FXML 1.0.0.201404070704 org.eclipse.fx.ide.fxml.feature.feature.group BestSolution.at
e(fx)clipse - IDE - Mobile 1.0.0.201404070704 org.eclipse.fx.ide.mobile.feature.feature.group BestSolution.at
e(fx)clipse - IDE - PDE 1.0.0.201404070704 org.eclipse.fx.ide.pde.feature.feature.group BestSolution.at
e(fx)clipse - IDE - RRobot 1.0.0.201404070704 org.eclipse.fx.ide.rrobot.feature.feature.group BestSolution.at
e(fx)clipse addons - Tooling - RoboVM Integration 1.0.0.201404080103 at.bestsolution.efxclipse.robovm.feature.feature.group BestSolution.at
...

Bye, Claus

PS:
Beyond Eclipse->Window->Preferences there is also a JavaFX settings item missing.
The download was:
eclipse-SDK-4.4M6-win32-x86_64-efx-1.0.0-SNAPSHOT
All 64 bit (JRE + Eclipse SDK)

Starting off on a new workspace did not help - no e(fx)clipse project options.

[Updated on: Wed, 09 April 2014 06:33]

Report message to a moderator

Re: e(fx)clipse nightly are based on Luna [message #1289263 is a reply to message #1289205] Wed, 09 April 2014 07:09 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
Hi,

The workspace settings don't matter which java is used to launch the
IDE. If you don't see the wizards this means that the bundles bringing
JavaFX support to you are not activated.

The only reason this can happen is that you are not launching Eclipse
itself with a JDK8! What does About Eclipse > Installation Details >
Configuration report as "java.version"?

You can also check the state of the bundles using the built-in host
console and typing "ss org.eclipse.fx" if they are only in the installed
state they can not be resolved because of the above reason.

Tom

On 09.04.14 08:00, Claus Hoeltzcke wrote:
> Hi Tom,
>
> thanks for your quick answer.
> I know Kepler has the Java8 option, but sooner or later I would switch
> to Luna anyway - now its sooner.
>
> I did run all with Java8 (jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014).
> Only with the first startup of Luna a Java7 was used for the project
> itself, since the previous workspace settings where from Kepler.
> Could that be the problem - migrating the Kepler workspace to Luna?
>
> However, as I understand, I should see beyond 'New Project' the option
> to create a JavaFX project like in Kepler.
> There seems also no editor for opening/running the fxbuild file, the way
> I seen it in Kepler.
> In Kepler two libraries where listed in the project tree. The FX lib and
> the JRE. With Luna I only see the JRE - is that correct?
>
> The 'Installed Software' dialog in Luna lists (looks OK to me):
> e(fx)clipse - IDE 1.0.0.201404070704
> org.eclipse.fx.ide.feature.feature.group BestSolution.at
> e(fx)clipse - IDE - Basic 1.0.0.201404070704
> org.eclipse.fx.ide.basic.feature.feature.group BestSolution.at
> e(fx)clipse - IDE - Converter 1.0.0.201404070704
> org.eclipse.fx.ide.converter.feature.feature.group BestSolution.at
> e(fx)clipse - IDE - CSS 1.0.0.201404070704
> org.eclipse.fx.ide.css.feature.feature.group BestSolution.at
> e(fx)clipse - IDE - FXGraph 1.0.0.201404070704
> org.eclipse.fx.ide.fxgraph.feature.feature.group BestSolution.at
> e(fx)clipse - IDE - FXML 1.0.0.201404070704
> org.eclipse.fx.ide.fxml.feature.feature.group BestSolution.at
> e(fx)clipse - IDE - Mobile 1.0.0.201404070704
> org.eclipse.fx.ide.mobile.feature.feature.group BestSolution.at
> e(fx)clipse - IDE - PDE 1.0.0.201404070704
> org.eclipse.fx.ide.pde.feature.feature.group BestSolution.at
> e(fx)clipse - IDE - RRobot 1.0.0.201404070704
> org.eclipse.fx.ide.rrobot.feature.feature.group BestSolution.at
> e(fx)clipse addons - Tooling - RoboVM Integration
> 1.0.0.201404080103
> at.bestsolution.efxclipse.robovm.feature.feature.group BestSolution.at
> ..
>
> Bye, Claus
Re: e(fx)clipse nightly are based on Luna [message #1289484 is a reply to message #1289263] Wed, 09 April 2014 11:15 Go to previous messageGo to next message
Claus Hoeltzcke is currently offline Claus HoeltzckeFriend
Messages: 4
Registered: April 2014
Junior Member
Hi Tom,

here a report snip (again seems OK to me) - the About Eclipse does not show JavaFX plugin icon:

*** Date: Mittwoch, 9. April 2014 12:42:34 Mitteleuropäische Sommerzeit

*** Platform Details:

*** System properties:
...
-vm
D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin\javaw.exe
eclipse.home.location=file:/D:/eclipse_luna_64/
eclipse.launcher=D:\eclipse_luna_64\eclipse.exe
eclipse.launcher.name=Eclipse
eclipse.p2.data.area=@config.dir/../p2/
eclipse.p2.profile=SDKProfile
eclipse.product=org.eclipse.sdk.ide
eclipse.startTime=1397039949221
eclipse.stateSaveDelayInterval=30000
eclipse.vm=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin\javaw.exe
eclipse.vmargs=-Xms40m
-Xmx512m
-Xmx1024m
-XX:MaxPermSize=256m
-jar
D:\eclipse_luna_64\\plugins/org.eclipse.equinox.launcher_1.3.0.v20140224-1459.jar
equinox.use.ds=true
file.encoding=Cp1252
file.encoding.pkg=sun.io
file.separator=\
gosh.args=--nointeractive
java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
java.awt.printerjob=sun.awt.windows.WPrinterJob
java.class.path=D:\eclipse_luna_64\\plugins/org.eclipse.equinox.launcher_1.3.0.v20140224-1459.jar
java.class.version=52.0
java.endorsed.dirs=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\lib\endorsed
java.ext.dirs=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\lib\ext;C:\WINDOWS\Sun\Java\lib\ext
java.home=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre
java.io.tmpdir=C:\Users\esn506y\AppData\Local\Temp\
java.library.path=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;c:\Oracle\Home\11.2\11.2.0
...
java.version=1.8.0_20-ea
java.vm.info=mixed mode
java.vm.name=Java HotSpot(TM) 64-Bit Server VM
java.vm.specification.name=Java Virtual Machine Specification
java.vm.specification.vendor=Oracle Corporation
java.vm.specification.version=1.8
java.vm.vendor=Oracle Corporation
java.vm.version=25.20-b05
line.separator=
...

Here the output from the host console:

osgi> ss org.eclipse.fx
"Framework is launched."


id State Bundle
2 RESOLVED org.eclipse.fx.osgi_1.0.0.201404070501
Master=0
205 STARTING org.eclipse.fx.core_1.0.0.201404070601
206 STARTING org.eclipse.fx.core.guice_1.0.0.201404070601
207 INSTALLED org.eclipse.fx.formats.svg_1.0.0.201404070601
208 INSTALLED org.eclipse.fx.ide.converter_1.0.0.201404070704
209 INSTALLED org.eclipse.fx.ide.css_1.0.0.201404070704
210 INSTALLED org.eclipse.fx.ide.css.cssext_1.0.0.201404070704
211 INSTALLED org.eclipse.fx.ide.css.cssext.ui_1.0.0.201404070704
212 INSTALLED org.eclipse.fx.ide.css.jfx_1.0.0.201404070704
213 INSTALLED org.eclipse.fx.ide.css.ui_1.0.0.201404070704
214 INSTALLED org.eclipse.fx.ide.fxgraph_1.0.0.201404070704
215 INSTALLED org.eclipse.fx.ide.fxgraph.ui_1.0.0.201404070704
216 INSTALLED org.eclipse.fx.ide.fxml_1.0.0.201404070704
217 INSTALLED org.eclipse.fx.ide.fxml.compiler_1.0.0.201404070704
218 INSTALLED org.eclipse.fx.ide.java6_1.0.0.201404070704
219 INSTALLED org.eclipse.fx.ide.jdt.core_1.0.0.201404070704
220 INSTALLED org.eclipse.fx.ide.jdt.ui_1.0.0.201404070704
221 INSTALLED org.eclipse.fx.ide.model_1.0.0.201404070704
222 INSTALLED org.eclipse.fx.ide.pde.java7_1.0.0.201404070704
223 INSTALLED org.eclipse.fx.ide.pde.ui_1.0.0.201404070704
224 INSTALLED org.eclipse.fx.ide.pde.ui.e4_1.0.0.201404070704
225 INSTALLED org.eclipse.fx.ide.rrobot_1.0.0.201404070704
226 INSTALLED org.eclipse.fx.ide.rrobot.dsl_1.0.0.201404070704
227 INSTALLED org.eclipse.fx.ide.rrobot.dsl.ui_1.0.0.201404070704
228 INSTALLED org.eclipse.fx.ide.rrobot.model_1.0.0.201404070704
229 INSTALLED org.eclipse.fx.ide.ui_1.0.0.201404070704
230 INSTALLED org.eclipse.fx.ide.ui.mobile.sim.device_1.0.0.201404070704
231 INSTALLED org.eclipse.fx.ide.ui.mobile.sim.launch_1.0.0.201404070704
232 INSTALLED org.eclipse.fx.ide.ui.preview_1.0.0.201404070704
233 STARTING org.eclipse.fx.javafx_2.2.0.201404070501
234 STARTING org.eclipse.fx.osgi.util_1.0.0.201404070601
235 INSTALLED org.eclipse.fx.ui.mobile_1.0.0.201404070601
osgi>
Re: e(fx)clipse nightly are based on Luna [message #1289490 is a reply to message #1289484] Wed, 09 April 2014 11:17 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
Ok - so the bundles are not resolved. Let me see if i can reproduce this
on locally!

Tom

On 09.04.14 13:15, Claus Hoeltzcke wrote:
> Hi Tom,
>
> here a report snip (again seems OK to me) - the About Eclipse does not
> show JavaFX plugin icon:
>
> *** Date: Mittwoch, 9. April 2014 12:42:34 Mitteleuropäische Sommerzeit
>
> *** Platform Details:
>
> *** System properties:
> ..
> -vm
> D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin\javaw.exe
> eclipse.home.location=file:/D:/eclipse_luna_64/
> eclipse.launcher=D:\eclipse_luna_64\eclipse.exe
> eclipse.launcher.name=Eclipse
> eclipse.p2.data.area=@config.dir/../p2/
> eclipse.p2.profile=SDKProfile
> eclipse.product=org.eclipse.sdk.ide
> eclipse.startTime=1397039949221
> eclipse.stateSaveDelayInterval=30000
> eclipse.vm=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin\javaw.exe
>
> eclipse.vmargs=-Xms40m
> -Xmx512m
> -Xmx1024m
> -XX:MaxPermSize=256m
> -jar
> D:\eclipse_luna_64\\plugins/org.eclipse.equinox.launcher_1.3.0.v20140224-1459.jar
>
> equinox.use.ds=true
> file.encoding=Cp1252
> file.encoding.pkg=sun.io
> file.separator=\
> gosh.args=--nointeractive
> java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
> java.awt.printerjob=sun.awt.windows.WPrinterJob
> java.class.path=D:\eclipse_luna_64\\plugins/org.eclipse.equinox.launcher_1.3.0.v20140224-1459.jar
>
> java.class.version=52.0
> java.endorsed.dirs=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\lib\endorsed
>
> java.ext.dirs=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\lib\ext;C:\WINDOWS\Sun\Java\lib\ext
>
> java.home=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre
> java.io.tmpdir=C:\Users\esn506y\AppData\Local\Temp\
> java.library.path=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;c:\Oracle\Home\11.2\11.2.0
>
> ..
> java.version=1.8.0_20-ea
> java.vm.info=mixed mode
> java.vm.name=Java HotSpot(TM) 64-Bit Server VM
> java.vm.specification.name=Java Virtual Machine Specification
> java.vm.specification.vendor=Oracle Corporation
> java.vm.specification.version=1.8
> java.vm.vendor=Oracle Corporation
> java.vm.version=25.20-b05
> line.separator=
> ..
>
> Here the output from the host console:
>
> osgi> ss org.eclipse.fx
> "Framework is launched."
>
>
> id State Bundle
> 2 RESOLVED org.eclipse.fx.osgi_1.0.0.201404070501
> Master=0
> 205 STARTING org.eclipse.fx.core_1.0.0.201404070601
> 206 STARTING org.eclipse.fx.core.guice_1.0.0.201404070601
> 207 INSTALLED org.eclipse.fx.formats.svg_1.0.0.201404070601
> 208 INSTALLED org.eclipse.fx.ide.converter_1.0.0.201404070704
> 209 INSTALLED org.eclipse.fx.ide.css_1.0.0.201404070704
> 210 INSTALLED org.eclipse.fx.ide.css.cssext_1.0.0.201404070704
> 211 INSTALLED org.eclipse.fx.ide.css.cssext.ui_1.0.0.201404070704
> 212 INSTALLED org.eclipse.fx.ide.css.jfx_1.0.0.201404070704
> 213 INSTALLED org.eclipse.fx.ide.css.ui_1.0.0.201404070704
> 214 INSTALLED org.eclipse.fx.ide.fxgraph_1.0.0.201404070704
> 215 INSTALLED org.eclipse.fx.ide.fxgraph.ui_1.0.0.201404070704
> 216 INSTALLED org.eclipse.fx.ide.fxml_1.0.0.201404070704
> 217 INSTALLED org.eclipse.fx.ide.fxml.compiler_1.0.0.201404070704
> 218 INSTALLED org.eclipse.fx.ide.java6_1.0.0.201404070704
> 219 INSTALLED org.eclipse.fx.ide.jdt.core_1.0.0.201404070704
> 220 INSTALLED org.eclipse.fx.ide.jdt.ui_1.0.0.201404070704
> 221 INSTALLED org.eclipse.fx.ide.model_1.0.0.201404070704
> 222 INSTALLED org.eclipse.fx.ide.pde.java7_1.0.0.201404070704
> 223 INSTALLED org.eclipse.fx.ide.pde.ui_1.0.0.201404070704
> 224 INSTALLED org.eclipse.fx.ide.pde.ui.e4_1.0.0.201404070704
> 225 INSTALLED org.eclipse.fx.ide.rrobot_1.0.0.201404070704
> 226 INSTALLED org.eclipse.fx.ide.rrobot.dsl_1.0.0.201404070704
> 227 INSTALLED org.eclipse.fx.ide.rrobot.dsl.ui_1.0.0.201404070704
> 228 INSTALLED org.eclipse.fx.ide.rrobot.model_1.0.0.201404070704
> 229 INSTALLED org.eclipse.fx.ide.ui_1.0.0.201404070704
> 230 INSTALLED
> org.eclipse.fx.ide.ui.mobile.sim.device_1.0.0.201404070704
> 231 INSTALLED
> org.eclipse.fx.ide.ui.mobile.sim.launch_1.0.0.201404070704
> 232 INSTALLED org.eclipse.fx.ide.ui.preview_1.0.0.201404070704
> 233 STARTING org.eclipse.fx.javafx_2.2.0.201404070501
> 234 STARTING org.eclipse.fx.osgi.util_1.0.0.201404070601
> 235 INSTALLED org.eclipse.fx.ui.mobile_1.0.0.201404070601
> osgi>
Re: e(fx)clipse nightly are based on Luna [message #1289525 is a reply to message #1289484] Wed, 09 April 2014 11:54 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
Hi,

I've now downloaded the latest nightly build of e(fx)clipse and
installed 8u20-b05 and all the bundles are in an installed state, so
every thing is fine in my install :-(

I only have Win8 32bit but that should not really matter!

Can you please enter in your host console:

diag 219

You can use any other ID from the org.eclipse.fx bundles who reports as
the state only installed instead of RESOLVED and/or STARTING. I hope we
get some useful output from that.

Tom

On 09.04.14 13:15, Claus Hoeltzcke wrote:
> Hi Tom,
>
> here a report snip (again seems OK to me) - the About Eclipse does not
> show JavaFX plugin icon:
>
> *** Date: Mittwoch, 9. April 2014 12:42:34 Mitteleuropäische Sommerzeit
>
> *** Platform Details:
>
> *** System properties:
> ..
> -vm
> D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin\javaw.exe
> eclipse.home.location=file:/D:/eclipse_luna_64/
> eclipse.launcher=D:\eclipse_luna_64\eclipse.exe
> eclipse.launcher.name=Eclipse
> eclipse.p2.data.area=@config.dir/../p2/
> eclipse.p2.profile=SDKProfile
> eclipse.product=org.eclipse.sdk.ide
> eclipse.startTime=1397039949221
> eclipse.stateSaveDelayInterval=30000
> eclipse.vm=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin\javaw.exe
>
> eclipse.vmargs=-Xms40m
> -Xmx512m
> -Xmx1024m
> -XX:MaxPermSize=256m
> -jar
> D:\eclipse_luna_64\\plugins/org.eclipse.equinox.launcher_1.3.0.v20140224-1459.jar
>
> equinox.use.ds=true
> file.encoding=Cp1252
> file.encoding.pkg=sun.io
> file.separator=\
> gosh.args=--nointeractive
> java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
> java.awt.printerjob=sun.awt.windows.WPrinterJob
> java.class.path=D:\eclipse_luna_64\\plugins/org.eclipse.equinox.launcher_1.3.0.v20140224-1459.jar
>
> java.class.version=52.0
> java.endorsed.dirs=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\lib\endorsed
>
> java.ext.dirs=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\lib\ext;C:\WINDOWS\Sun\Java\lib\ext
>
> java.home=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre
> java.io.tmpdir=C:\Users\esn506y\AppData\Local\Temp\
> java.library.path=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;c:\Oracle\Home\11.2\11.2.0
>
> ..
> java.version=1.8.0_20-ea
> java.vm.info=mixed mode
> java.vm.name=Java HotSpot(TM) 64-Bit Server VM
> java.vm.specification.name=Java Virtual Machine Specification
> java.vm.specification.vendor=Oracle Corporation
> java.vm.specification.version=1.8
> java.vm.vendor=Oracle Corporation
> java.vm.version=25.20-b05
> line.separator=
> ..
>
> Here the output from the host console:
>
> osgi> ss org.eclipse.fx
> "Framework is launched."
>
>
> id State Bundle
> 2 RESOLVED org.eclipse.fx.osgi_1.0.0.201404070501
> Master=0
> 205 STARTING org.eclipse.fx.core_1.0.0.201404070601
> 206 STARTING org.eclipse.fx.core.guice_1.0.0.201404070601
> 207 INSTALLED org.eclipse.fx.formats.svg_1.0.0.201404070601
> 208 INSTALLED org.eclipse.fx.ide.converter_1.0.0.201404070704
> 209 INSTALLED org.eclipse.fx.ide.css_1.0.0.201404070704
> 210 INSTALLED org.eclipse.fx.ide.css.cssext_1.0.0.201404070704
> 211 INSTALLED org.eclipse.fx.ide.css.cssext.ui_1.0.0.201404070704
> 212 INSTALLED org.eclipse.fx.ide.css.jfx_1.0.0.201404070704
> 213 INSTALLED org.eclipse.fx.ide.css.ui_1.0.0.201404070704
> 214 INSTALLED org.eclipse.fx.ide.fxgraph_1.0.0.201404070704
> 215 INSTALLED org.eclipse.fx.ide.fxgraph.ui_1.0.0.201404070704
> 216 INSTALLED org.eclipse.fx.ide.fxml_1.0.0.201404070704
> 217 INSTALLED org.eclipse.fx.ide.fxml.compiler_1.0.0.201404070704
> 218 INSTALLED org.eclipse.fx.ide.java6_1.0.0.201404070704
> 219 INSTALLED org.eclipse.fx.ide.jdt.core_1.0.0.201404070704
> 220 INSTALLED org.eclipse.fx.ide.jdt.ui_1.0.0.201404070704
> 221 INSTALLED org.eclipse.fx.ide.model_1.0.0.201404070704
> 222 INSTALLED org.eclipse.fx.ide.pde.java7_1.0.0.201404070704
> 223 INSTALLED org.eclipse.fx.ide.pde.ui_1.0.0.201404070704
> 224 INSTALLED org.eclipse.fx.ide.pde.ui.e4_1.0.0.201404070704
> 225 INSTALLED org.eclipse.fx.ide.rrobot_1.0.0.201404070704
> 226 INSTALLED org.eclipse.fx.ide.rrobot.dsl_1.0.0.201404070704
> 227 INSTALLED org.eclipse.fx.ide.rrobot.dsl.ui_1.0.0.201404070704
> 228 INSTALLED org.eclipse.fx.ide.rrobot.model_1.0.0.201404070704
> 229 INSTALLED org.eclipse.fx.ide.ui_1.0.0.201404070704
> 230 INSTALLED
> org.eclipse.fx.ide.ui.mobile.sim.device_1.0.0.201404070704
> 231 INSTALLED
> org.eclipse.fx.ide.ui.mobile.sim.launch_1.0.0.201404070704
> 232 INSTALLED org.eclipse.fx.ide.ui.preview_1.0.0.201404070704
> 233 STARTING org.eclipse.fx.javafx_2.2.0.201404070501
> 234 STARTING org.eclipse.fx.osgi.util_1.0.0.201404070601
> 235 INSTALLED org.eclipse.fx.ui.mobile_1.0.0.201404070601
> osgi>
Re: e(fx)clipse nightly are based on Luna [message #1289535 is a reply to message #1289525] Wed, 09 April 2014 12:04 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
Ha,

I can reproduce this now! It goes like this:

1. Download e(fx)clipse
2. Extract it
3. Launch with JDK7 (most bundles not resolved because of Java7)
4. Stop
5. Launch with JDK8
=> bummer Equinox still says that it can not resolve:

------8<------
org.eclipse.fx.core [205]
Unresolved requirement: Require-Capability: osgi.ee;
filter:="(&(osgi.ee=JavaSE)(version=1.8))"
osgi>
------8<------

although we are running on JDK8 now!

Tom

On 09.04.14 13:54, Tom Schindl wrote:
> Hi,
>
> I've now downloaded the latest nightly build of e(fx)clipse and
> installed 8u20-b05 and all the bundles are in an installed state, so
> every thing is fine in my install :-(
>
> I only have Win8 32bit but that should not really matter!
>
> Can you please enter in your host console:
>
> diag 219
>
> You can use any other ID from the org.eclipse.fx bundles who reports as
> the state only installed instead of RESOLVED and/or STARTING. I hope we
> get some useful output from that.
>
> Tom
>
> On 09.04.14 13:15, Claus Hoeltzcke wrote:
>> Hi Tom,
>>
>> here a report snip (again seems OK to me) - the About Eclipse does not
>> show JavaFX plugin icon:
>>
>> *** Date: Mittwoch, 9. April 2014 12:42:34 Mitteleuropäische Sommerzeit
>>
>> *** Platform Details:
>>
>> *** System properties:
>> ..
>> -vm
>> D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin\javaw.exe
>> eclipse.home.location=file:/D:/eclipse_luna_64/
>> eclipse.launcher=D:\eclipse_luna_64\eclipse.exe
>> eclipse.launcher.name=Eclipse
>> eclipse.p2.data.area=@config.dir/../p2/
>> eclipse.p2.profile=SDKProfile
>> eclipse.product=org.eclipse.sdk.ide
>> eclipse.startTime=1397039949221
>> eclipse.stateSaveDelayInterval=30000
>> eclipse.vm=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin\javaw.exe
>>
>> eclipse.vmargs=-Xms40m
>> -Xmx512m
>> -Xmx1024m
>> -XX:MaxPermSize=256m
>> -jar
>> D:\eclipse_luna_64\\plugins/org.eclipse.equinox.launcher_1.3.0.v20140224-1459.jar
>>
>> equinox.use.ds=true
>> file.encoding=Cp1252
>> file.encoding.pkg=sun.io
>> file.separator=\
>> gosh.args=--nointeractive
>> java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
>> java.awt.printerjob=sun.awt.windows.WPrinterJob
>> java.class.path=D:\eclipse_luna_64\\plugins/org.eclipse.equinox.launcher_1.3.0.v20140224-1459.jar
>>
>> java.class.version=52.0
>> java.endorsed.dirs=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\lib\endorsed
>>
>> java.ext.dirs=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\lib\ext;C:\WINDOWS\Sun\Java\lib\ext
>>
>> java.home=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre
>> java.io.tmpdir=C:\Users\esn506y\AppData\Local\Temp\
>> java.library.path=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;c:\Oracle\Home\11.2\11.2.0
>>
>> ..
>> java.version=1.8.0_20-ea
>> java.vm.info=mixed mode
>> java.vm.name=Java HotSpot(TM) 64-Bit Server VM
>> java.vm.specification.name=Java Virtual Machine Specification
>> java.vm.specification.vendor=Oracle Corporation
>> java.vm.specification.version=1.8
>> java.vm.vendor=Oracle Corporation
>> java.vm.version=25.20-b05
>> line.separator=
>> ..
>>
>> Here the output from the host console:
>>
>> osgi> ss org.eclipse.fx
>> "Framework is launched."
>>
>>
>> id State Bundle
>> 2 RESOLVED org.eclipse.fx.osgi_1.0.0.201404070501
>> Master=0
>> 205 STARTING org.eclipse.fx.core_1.0.0.201404070601
>> 206 STARTING org.eclipse.fx.core.guice_1.0.0.201404070601
>> 207 INSTALLED org.eclipse.fx.formats.svg_1.0.0.201404070601
>> 208 INSTALLED org.eclipse.fx.ide.converter_1.0.0.201404070704
>> 209 INSTALLED org.eclipse.fx.ide.css_1.0.0.201404070704
>> 210 INSTALLED org.eclipse.fx.ide.css.cssext_1.0.0.201404070704
>> 211 INSTALLED org.eclipse.fx.ide.css.cssext.ui_1.0.0.201404070704
>> 212 INSTALLED org.eclipse.fx.ide.css.jfx_1.0.0.201404070704
>> 213 INSTALLED org.eclipse.fx.ide.css.ui_1.0.0.201404070704
>> 214 INSTALLED org.eclipse.fx.ide.fxgraph_1.0.0.201404070704
>> 215 INSTALLED org.eclipse.fx.ide.fxgraph.ui_1.0.0.201404070704
>> 216 INSTALLED org.eclipse.fx.ide.fxml_1.0.0.201404070704
>> 217 INSTALLED org.eclipse.fx.ide.fxml.compiler_1.0.0.201404070704
>> 218 INSTALLED org.eclipse.fx.ide.java6_1.0.0.201404070704
>> 219 INSTALLED org.eclipse.fx.ide.jdt.core_1.0.0.201404070704
>> 220 INSTALLED org.eclipse.fx.ide.jdt.ui_1.0.0.201404070704
>> 221 INSTALLED org.eclipse.fx.ide.model_1.0.0.201404070704
>> 222 INSTALLED org.eclipse.fx.ide.pde.java7_1.0.0.201404070704
>> 223 INSTALLED org.eclipse.fx.ide.pde.ui_1.0.0.201404070704
>> 224 INSTALLED org.eclipse.fx.ide.pde.ui.e4_1.0.0.201404070704
>> 225 INSTALLED org.eclipse.fx.ide.rrobot_1.0.0.201404070704
>> 226 INSTALLED org.eclipse.fx.ide.rrobot.dsl_1.0.0.201404070704
>> 227 INSTALLED org.eclipse.fx.ide.rrobot.dsl.ui_1.0.0.201404070704
>> 228 INSTALLED org.eclipse.fx.ide.rrobot.model_1.0.0.201404070704
>> 229 INSTALLED org.eclipse.fx.ide.ui_1.0.0.201404070704
>> 230 INSTALLED
>> org.eclipse.fx.ide.ui.mobile.sim.device_1.0.0.201404070704
>> 231 INSTALLED
>> org.eclipse.fx.ide.ui.mobile.sim.launch_1.0.0.201404070704
>> 232 INSTALLED org.eclipse.fx.ide.ui.preview_1.0.0.201404070704
>> 233 STARTING org.eclipse.fx.javafx_2.2.0.201404070501
>> 234 STARTING org.eclipse.fx.osgi.util_1.0.0.201404070601
>> 235 INSTALLED org.eclipse.fx.ui.mobile_1.0.0.201404070601
>> osgi>
>
Re: e(fx)clipse nightly are based on Luna [message #1289555 is a reply to message #1289535] Wed, 09 April 2014 12:21 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
Wow this is a serious BUG in Equinox you just unveiled!

I posted to Equinox-Dev [1].

Until it is solved you:
a) delete your extracted eclipse IDE
b) make sure you launch it the first time with JDK8 already

You can happily work with it!

Tom

[1]https://dev.eclipse.org/mhonarc/lists/equinox-dev/msg07819.html

On 09.04.14 14:04, Tom Schindl wrote:
> Ha,
>
> I can reproduce this now! It goes like this:
>
> 1. Download e(fx)clipse
> 2. Extract it
> 3. Launch with JDK7 (most bundles not resolved because of Java7)
> 4. Stop
> 5. Launch with JDK8
> => bummer Equinox still says that it can not resolve:
>
> ------8<------
> org.eclipse.fx.core [205]
> Unresolved requirement: Require-Capability: osgi.ee;
> filter:="(&(osgi.ee=JavaSE)(version=1.8))"
> osgi>
> ------8<------
>
> although we are running on JDK8 now!
>
> Tom
>
> On 09.04.14 13:54, Tom Schindl wrote:
>> Hi,
>>
>> I've now downloaded the latest nightly build of e(fx)clipse and
>> installed 8u20-b05 and all the bundles are in an installed state, so
>> every thing is fine in my install :-(
>>
>> I only have Win8 32bit but that should not really matter!
>>
>> Can you please enter in your host console:
>>
>> diag 219
>>
>> You can use any other ID from the org.eclipse.fx bundles who reports as
>> the state only installed instead of RESOLVED and/or STARTING. I hope we
>> get some useful output from that.
>>
>> Tom
>>
>> On 09.04.14 13:15, Claus Hoeltzcke wrote:
>>> Hi Tom,
>>>
>>> here a report snip (again seems OK to me) - the About Eclipse does not
>>> show JavaFX plugin icon:
>>>
>>> *** Date: Mittwoch, 9. April 2014 12:42:34 Mitteleuropäische Sommerzeit
>>>
>>> *** Platform Details:
>>>
>>> *** System properties:
>>> ..
>>> -vm
>>> D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin\javaw.exe
>>> eclipse.home.location=file:/D:/eclipse_luna_64/
>>> eclipse.launcher=D:\eclipse_luna_64\eclipse.exe
>>> eclipse.launcher.name=Eclipse
>>> eclipse.p2.data.area=@config.dir/../p2/
>>> eclipse.p2.profile=SDKProfile
>>> eclipse.product=org.eclipse.sdk.ide
>>> eclipse.startTime=1397039949221
>>> eclipse.stateSaveDelayInterval=30000
>>> eclipse.vm=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin\javaw.exe
>>>
>>> eclipse.vmargs=-Xms40m
>>> -Xmx512m
>>> -Xmx1024m
>>> -XX:MaxPermSize=256m
>>> -jar
>>> D:\eclipse_luna_64\\plugins/org.eclipse.equinox.launcher_1.3.0.v20140224-1459.jar
>>>
>>> equinox.use.ds=true
>>> file.encoding=Cp1252
>>> file.encoding.pkg=sun.io
>>> file.separator=\
>>> gosh.args=--nointeractive
>>> java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
>>> java.awt.printerjob=sun.awt.windows.WPrinterJob
>>> java.class.path=D:\eclipse_luna_64\\plugins/org.eclipse.equinox.launcher_1.3.0.v20140224-1459.jar
>>>
>>> java.class.version=52.0
>>> java.endorsed.dirs=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\lib\endorsed
>>>
>>> java.ext.dirs=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\lib\ext;C:\WINDOWS\Sun\Java\lib\ext
>>>
>>> java.home=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre
>>> java.io.tmpdir=C:\Users\esn506y\AppData\Local\Temp\
>>> java.library.path=D:\java\jdk-8u20-ea-bin-b05-windows-x64-12_mar_2014\jre\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;c:\Oracle\Home\11.2\11.2.0
>>>
>>> ..
>>> java.version=1.8.0_20-ea
>>> java.vm.info=mixed mode
>>> java.vm.name=Java HotSpot(TM) 64-Bit Server VM
>>> java.vm.specification.name=Java Virtual Machine Specification
>>> java.vm.specification.vendor=Oracle Corporation
>>> java.vm.specification.version=1.8
>>> java.vm.vendor=Oracle Corporation
>>> java.vm.version=25.20-b05
>>> line.separator=
>>> ..
>>>
>>> Here the output from the host console:
>>>
>>> osgi> ss org.eclipse.fx
>>> "Framework is launched."
>>>
>>>
>>> id State Bundle
>>> 2 RESOLVED org.eclipse.fx.osgi_1.0.0.201404070501
>>> Master=0
>>> 205 STARTING org.eclipse.fx.core_1.0.0.201404070601
>>> 206 STARTING org.eclipse.fx.core.guice_1.0.0.201404070601
>>> 207 INSTALLED org.eclipse.fx.formats.svg_1.0.0.201404070601
>>> 208 INSTALLED org.eclipse.fx.ide.converter_1.0.0.201404070704
>>> 209 INSTALLED org.eclipse.fx.ide.css_1.0.0.201404070704
>>> 210 INSTALLED org.eclipse.fx.ide.css.cssext_1.0.0.201404070704
>>> 211 INSTALLED org.eclipse.fx.ide.css.cssext.ui_1.0.0.201404070704
>>> 212 INSTALLED org.eclipse.fx.ide.css.jfx_1.0.0.201404070704
>>> 213 INSTALLED org.eclipse.fx.ide.css.ui_1.0.0.201404070704
>>> 214 INSTALLED org.eclipse.fx.ide.fxgraph_1.0.0.201404070704
>>> 215 INSTALLED org.eclipse.fx.ide.fxgraph.ui_1.0.0.201404070704
>>> 216 INSTALLED org.eclipse.fx.ide.fxml_1.0.0.201404070704
>>> 217 INSTALLED org.eclipse.fx.ide.fxml.compiler_1.0.0.201404070704
>>> 218 INSTALLED org.eclipse.fx.ide.java6_1.0.0.201404070704
>>> 219 INSTALLED org.eclipse.fx.ide.jdt.core_1.0.0.201404070704
>>> 220 INSTALLED org.eclipse.fx.ide.jdt.ui_1.0.0.201404070704
>>> 221 INSTALLED org.eclipse.fx.ide.model_1.0.0.201404070704
>>> 222 INSTALLED org.eclipse.fx.ide.pde.java7_1.0.0.201404070704
>>> 223 INSTALLED org.eclipse.fx.ide.pde.ui_1.0.0.201404070704
>>> 224 INSTALLED org.eclipse.fx.ide.pde.ui.e4_1.0.0.201404070704
>>> 225 INSTALLED org.eclipse.fx.ide.rrobot_1.0.0.201404070704
>>> 226 INSTALLED org.eclipse.fx.ide.rrobot.dsl_1.0.0.201404070704
>>> 227 INSTALLED org.eclipse.fx.ide.rrobot.dsl.ui_1.0.0.201404070704
>>> 228 INSTALLED org.eclipse.fx.ide.rrobot.model_1.0.0.201404070704
>>> 229 INSTALLED org.eclipse.fx.ide.ui_1.0.0.201404070704
>>> 230 INSTALLED
>>> org.eclipse.fx.ide.ui.mobile.sim.device_1.0.0.201404070704
>>> 231 INSTALLED
>>> org.eclipse.fx.ide.ui.mobile.sim.launch_1.0.0.201404070704
>>> 232 INSTALLED org.eclipse.fx.ide.ui.preview_1.0.0.201404070704
>>> 233 STARTING org.eclipse.fx.javafx_2.2.0.201404070501
>>> 234 STARTING org.eclipse.fx.osgi.util_1.0.0.201404070601
>>> 235 INSTALLED org.eclipse.fx.ui.mobile_1.0.0.201404070601
>>> osgi>
>>
>
Re: e(fx)clipse nightly are based on Luna [message #1289642 is a reply to message #1289555] Wed, 09 April 2014 14:04 Go to previous messageGo to next message
Claus Hoeltzcke is currently offline Claus HoeltzckeFriend
Messages: 4
Registered: April 2014
Junior Member
Hi Tom,

thanks a lot !!!!! That is really helpful and you are right, I think I started the first time with Java7.

Bye Claus
Re: e(fx)clipse nightly are based on Luna [message #1290593 is a reply to message #1289642] Thu, 10 April 2014 08:50 Go to previous message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
The equinox problem is tracked in
https://bugs.eclipse.org/bugs/show_bug.cgi?id=432485

Tom

On 09.04.14 16:04, Claus Hoeltzcke wrote:
> Hi Tom,
>
> thanks a lot !!!!! That is really helpful and you are right, I think I
> started the first time with Java7.
>
> Bye Claus
Previous Topic:MPart lifecycle class
Next Topic:FXML - Java Compiler
Goto Forum:
  


Current Time: Tue Apr 16 09:26:51 GMT 2024

Powered by FUDForum. Page generated in 0.13066 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top