Search Gradle plugins

Version 2.30.0

2.30.0

Created 19 November 2024.

Plugin to ensure that the intellij plugin is added to the externalDependencies.xml.

Using the plugins DSL:

plugins {
  id("com.palantir.consistent-versions-require-idea-plugin") version "2.30.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.palantir.gradle.consistentversions:gradle-consistent-versions:2.30.0")
  }
}

apply(plugin = "com.palantir.consistent-versions-require-idea-plugin")

Using the plugins DSL:

plugins {
  id "com.palantir.consistent-versions-require-idea-plugin" version "2.30.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.palantir.gradle.consistentversions:gradle-consistent-versions:2.30.0"
  }
}

apply plugin: "com.palantir.consistent-versions-require-idea-plugin"

Learn how to apply plugins to subprojects