WriteJavaOpts writes JAVA_OPTS to a .opts file for centralized assembly JRE components use priority 05 to run early (before frameworks)
(ctx *common.Context, opts string)
| 332 | // WriteJavaOpts writes JAVA_OPTS to a .opts file for centralized assembly |
| 333 | // JRE components use priority 05 to run early (before frameworks) |
| 334 | func WriteJavaOpts(ctx *common.Context, opts string) error { |
| 335 | return WriteJavaOptsWithPriority(ctx, 05, "jre", opts) |
| 336 | } |
| 337 | |
| 338 | // WriteJavaOptsWithPriority writes JAVA_OPTS to a numbered .opts file for centralized assembly |
| 339 | // Priority determines execution order (lower numbers run first) |
no test coverage detected