Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.enrignagna.Plugin-Test") version "0.1.0-archeo+7c4fa5b"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.enrignagna:Plugin-Test:0.1.0-archeo+7c4fa5b")
      }
    }
    
    apply(plugin = "io.github.enrignagna.Plugin-Test")
  • Applying plugins to all subprojects .