Search Gradle plugins

Version 2.0.0

Created 27 August 2022.

Gradle plugin for Restrikt compiler plugin

Using the plugins DSL:

plugins {
  id("com.zwendo.restrikt") version "2.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.zwendo:restrikt-gradle-plugin:2.0.0")
  }
}

apply(plugin = "com.zwendo.restrikt")

Using the plugins DSL:

plugins {
  id "com.zwendo.restrikt" version "2.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.zwendo:restrikt-gradle-plugin:2.0.0"
  }
}

apply plugin: "com.zwendo.restrikt"

Learn how to apply plugins to subprojects