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