Search Gradle plugins

Version 0.0.7 (latest)

Created 30 April 2022.

Add interfaces to classes generated by other plugins

Using the plugins DSL:

plugins {
  id("io.github.tunguski") version "0.0.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.tunguski:interfacer-gradle-plugin:0.0.7")
  }
}

apply(plugin = "io.github.tunguski")

Using the plugins DSL:

plugins {
  id "io.github.tunguski" version "0.0.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.tunguski:interfacer-gradle-plugin:0.0.7"
  }
}

apply plugin: "io.github.tunguski"

Learn how to apply plugins to subprojects