Search Gradle plugins

Version c7ace8a.dirty

Created 14 October 2023.

A plugin to download and install KDiff

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects