com.zwendo.restrikt
Owner:
Lorris Creantor
Gradle plugin for Restrikt compiler plugin
https://github.com/ZwenDo/Restrikt
Sources: https://github.com/ZwenDo/Restrikt.git
Version 4.0.0 (latest)
Created 31 March 2023.
Gradle plugin for Restrikt compiler plugin
Using the plugins DSL:
plugins {
id("com.zwendo.restrikt") version "4.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.zwendo:restrikt-gradle-plugin:4.0.0")
}
}
apply(plugin = "com.zwendo.restrikt")
Using the plugins DSL:
plugins {
id "com.zwendo.restrikt" version "4.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.zwendo:restrikt-gradle-plugin:4.0.0"
}
}
apply plugin: "com.zwendo.restrikt"