Search Gradle plugins

Version 0.1.0 (latest)

Created 14 October 2023.

A plugin to download and install KDiff

Using the plugins DSL:

plugins {
  id("io.github.mikethebeer.gradle.kdiff") version "0.1.0"
}

Using legacy plugin application:

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

apply(plugin = "io.github.mikethebeer.gradle.kdiff")

Using the plugins DSL:

plugins {
  id "io.github.mikethebeer.gradle.kdiff" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.mikethebeer:plugin:0.1.0"
  }
}

apply plugin: "io.github.mikethebeer.gradle.kdiff"

Learn how to apply plugins to subprojects