Search Gradle plugins

org.ai2fit.gradle.formatting-plugin

Owner: AI2FIT

A convention plugin that handle the owc formatting profile. It configures the settings of Spotless.

https://gitlab.com/ai2fit/gradle-plugins/formatting

Sources: https://gitlab.com/ai2fit/gradle-plugins/formatting.git

Version 1.2.0 (latest)

Created 23 January 2024.

A convention plugin that handle the owc formatting profile. It configures the settings of Spotless.

Using the plugins DSL:

plugins {
  id("org.ai2fit.gradle.formatting-plugin") version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.ai2fit.gradle:formatting-plugin:1.2.0")
  }
}

apply(plugin = "org.ai2fit.gradle.formatting-plugin")

Using the plugins DSL:

plugins {
  id "org.ai2fit.gradle.formatting-plugin" version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.ai2fit.gradle:formatting-plugin:1.2.0"
  }
}

apply plugin: "org.ai2fit.gradle.formatting-plugin"

Learn how to apply plugins to subprojects