io.exoquery.terpal-plugin
Owner: Alexander Ioffe
Kotlin Terpal Compiler Plugin
https://github.com/exoquery/terpal
Sources: https://github.com/exoquery/terpal.git
Version 2.0.20-1.0.0-RC4
2.0.20-1.0.0-RC4
Created 22 September 2024.
Kotlin Terpal Compiler Plugin
Using the plugins DSL:
plugins {
id("io.exoquery.terpal-plugin") version "2.0.20-1.0.0-RC4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.exoquery:terpal-plugin-gradle:2.0.20-1.0.0-RC4")
}
}
apply(plugin = "io.exoquery.terpal-plugin")
Using the plugins DSL:
plugins {
id "io.exoquery.terpal-plugin" version "2.0.20-1.0.0-RC4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.exoquery:terpal-plugin-gradle:2.0.20-1.0.0-RC4"
}
}
apply plugin: "io.exoquery.terpal-plugin"