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

Created 21 June 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.7.3"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.typelead.eta:com.typelead.eta.gradle.plugin:0.7.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.typelead.eta")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.typelead.eta:com.typelead.eta.gradle.plugin:0.7.3")
      }
    }
    
    apply(plugin = "com.typelead.eta")
  • Applying plugins to all subprojects .