com.typelead.eta
Owner: Eta Programming Language
The official Gradle plugin for the Eta programming language. This plugin should be used for standard JVM projects.
https://github.com/typelead/gradle-eta
Sources: https://github.com/typelead/gradle-eta
Version 0.7.2
0.7.2
Created 11 June 2018.
The official Gradle plugin for the Eta programming language. This plugin should be used for standard JVM projects.
Using the plugins DSL:
plugins {
id("com.typelead.eta") version "0.7.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.typelead:gradle-eta:0.7.2")
}
}
apply(plugin = "com.typelead.eta")
Using the plugins DSL:
plugins {
id "com.typelead.eta" version "0.7.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.typelead:gradle-eta:0.7.2"
}
}
apply plugin: "com.typelead.eta"