-runframework ( 'none' | 'services' | ANY )?
Launcher
-
Example:
-runfw: none
-
Values:
(none | services | ANY)
-
Pattern:
.*
The -runframework
instruction sets the type of framework to run when launching an OSGi application. If set to none
, an internal dummy framework is used. If set to services
or any other value, the Java META-INF/services mechanism is used to locate the FrameworkFactory
implementation.
Note: The name of this instruction is somewhat confusing due to historical reasons. In most cases, you should use the -runfw
instruction to specify the actual framework JAR. The -runframework
instruction is only needed if you want to control the framework discovery mechanism or use a dummy framework for testing purposes.
TODO Needs review - AI Generated content