Search Gradle plugins

Version 0.1.3 (latest)

0.1.3

Created 16 July 2023.

Best way to structure your Gradle Project

Add this plugin to your build using the plugins DSL:

plugins {
  id("tools.forma.validation") version "0.1.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("tools.forma:validation:0.1.3")
      }
    }
    
    apply(plugin = "tools.forma.validation")
  • Applying plugins to all subprojects .