Search Gradle plugins

Version 0.0.8 (latest)

0.0.8

Created 20 April 2022.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.kotlin-graphics:align:0.0.8")
      }
    }
    
    apply(plugin = "io.github.kotlin-graphics.align")
  • Applying plugins to all subprojects .