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