Search Gradle plugins

Version 0.0.6.1 (latest)

Created 17 December 2020.

Add interfaces to classes generated by other plugins

Using the plugins DSL:

plugins {
  id("com.github.tunguski.interfacer") version "0.0.6.1"
}

Using legacy plugin application:

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

apply(plugin = "com.github.tunguski.interfacer")

Using the plugins DSL:

plugins {
  id "com.github.tunguski.interfacer" version "0.0.6.1"
}

Using legacy plugin application:

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

apply plugin: "com.github.tunguski.interfacer"

Learn how to apply plugins to subprojects