SubpluginOption
Represents an option for a Kotlin compiler plugin, defined by a key and a value.
All options are mapped to the following Kotlin compiler argument format:
"plugin:$pluginId:$key=$value"
Content copied to clipboard
pluginId
is the KotlinCompilerPluginSupportPlugin.getCompilerPluginId.
Options are added to the relevant compilation task inputs. To exclude options from task inputs, use the InternalSubpluginOption. For options that provide file paths, add the file paths to the FilesSubpluginOption.
Parameters
key
The key associated with this option.
lazyValue
The lazily-initialized value associated with the key.