Search Gradle plugins

Version 0.0.8 (latest)

Created 20 April 2022.

This plugins performs a dynamic alignment based on the current version inside the platform lockfile

Using the plugins DSL:

plugins {
  id("io.github.kotlin-graphics.align") version "0.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.kotlin-graphics:align:0.0.8")
  }
}

apply(plugin = "io.github.kotlin-graphics.align")

Using the plugins DSL:

plugins {
  id "io.github.kotlin-graphics.align" version "0.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.kotlin-graphics:align:0.0.8"
  }
}

apply plugin: "io.github.kotlin-graphics.align"

Learn how to apply plugins to subprojects