-runbuilds BOOLEAN
Project
-
Example:
-runbuilds=true -
Values:
true,false -
Pattern:
true|false|TRUE|FALSE
The -runbuilds instruction controls whether the bundles built by the current project should be automatically added to the -runbundles list when running or testing the project.
- In a
.bndrunfile, the default isfalse, so built bundles are not added unless you explicitly set-runbuilds: true. - In a
.bndfile, the default istrue, so built bundles are included unless you set-runbuilds: false.
This instruction is useful for controlling which bundles are available at runtime, especially when you want to test or launch only a subset of the bundles produced by your project.
TODO Needs review - AI Generated content
