Equinox start error (console bundle is missed)

前端 未结 5 2131
醉梦人生
醉梦人生 2020-12-05 21:27
java.version=1.6.0_10
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
 Command-line arguments:  -console -configuratio         


        
5条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-05 22:08

    In the above config.ini osgi.console.enable.builtin=false must NOT be on the same line with the osgi.bundles property. The official documentation seems to have this wrong too.

    My config.ini looks like:

    osgi.bundles=./org.apache.felix.gogo.runtime_0.10.0.v201209301036.jar@start,\
    ./org.apache.felix.gogo.command_0.10.0.v201209301215.jar@start,\
    ./org.apache.felix.gogo.shell_0.10.0.v201212101605.jar@start,\
    ./org.eclipse.equinox.console.jar@start
    osgi.console.enable.builtin=false
    osgi.console=4711
    

提交回复
热议问题