@Incubating public interface PluginDependencySpec
Can be used to specify the version of the plugin to use.
See PluginDependenciesSpec for more information about declaring plugin dependencies.
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
version(String version)
Specify the version of the plugin to depend on.
|
void version(@Nullable String version)
plugins {
id "org.company.myplugin" version "1.0"
}
By default, dependencies have no (i.e. null) version.
Core plugins must not include a version number specification. Community plugins must include a version number specification.
version - the version string (null for no specified version, which is the default)