com.palantir.consistent-versions-require-idea-plugin
Owner: Palantir Technologies
Plugin to ensure that the intellij plugin is added to the externalDependencies.xml.
https://github.com/palantir/gradle-consistent-versions
Sources: https://github.com/palantir/gradle-consistent-versions
Version 2.31.0 (latest)
Created 20 November 2024.
Plugin to ensure that the intellij plugin is added to the externalDependencies.xml.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.palantir.consistent-versions-require-idea-plugin") version "2.31.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.palantir.consistent-versions-require-idea-plugin:com.palantir.consistent-versions-require-idea-plugin.gradle.plugin:2.31.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.palantir.consistent-versions-require-idea-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.palantir.consistent-versions-require-idea-plugin:com.palantir.consistent-versions-require-idea-plugin.gradle.plugin:2.31.0") } } apply(plugin = "com.palantir.consistent-versions-require-idea-plugin")
- Applying plugins to all subprojects .