Search Gradle plugins

com.palantir.java-format-idea

Plugin to configure the PalantirJavaFormat IDEA plugin based on an optional implementation version of the formatter.

https://github.com/palantir/palantir-java-format/

Sources: https://github.com/palantir/palantir-java-format/

Version 2.26.0

Created 03 August 2022.

Plugin to configure the PalantirJavaFormat IDEA plugin based on an optional implementation version of the formatter.

Using the plugins DSL:

plugins {
  id("com.palantir.java-format-idea") version "2.26.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.palantir.javaformat:gradle-palantir-java-format:2.26.0")
  }
}

apply(plugin = "com.palantir.java-format-idea")

Using the plugins DSL:

plugins {
  id "com.palantir.java-format-idea" version "2.26.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.palantir.javaformat:gradle-palantir-java-format:2.26.0"
  }
}

apply plugin: "com.palantir.java-format-idea"

Learn how to apply plugins to subprojects