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.6.4

0.6.4

Created 20 May 2018.

The official Gradle plugin for the Eta programming language. This plugin should be used for standard JVM projects.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.typelead.eta") version "0.6.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.typelead:gradle-eta:0.6.4")
      }
    }
    
    apply(plugin = "com.typelead.eta")
  • Applying plugins to all subprojects .