Search Gradle plugins

com.typelead.eta

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.8.1 (latest)

0.8.1

Created 02 June 2019.

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.8.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.typelead:gradle-eta:0.8.1")
  }
}

apply(plugin = "com.typelead.eta")

Using the plugins DSL:

plugins {
  id "com.typelead.eta" version "0.8.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.typelead:gradle-eta:0.8.1"
  }
}

apply plugin: "com.typelead.eta"

Learn how to apply plugins to subprojects