Search Gradle plugins

com.typelead.eta.base

The official base Gradle plugin for the Eta programming language. This plugin should be used to configure Eta/Etlas in the root project.

https://github.com/typelead/gradle-eta

Sources: https://github.com/typelead/gradle-eta

Version 0.5.6

Created 18 April 2018.

The official base Gradle plugin for the Eta programming language. This plugin should be used to configure Eta/Etlas in the root project.

Add this plugin to your build using the plugins DSL:

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

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.base:com.typelead.eta.base.gradle.plugin:0.5.6")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.typelead.eta.base")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.typelead.eta.base:com.typelead.eta.base.gradle.plugin:0.5.6")
      }
    }
    
    apply(plugin = "com.typelead.eta.base")
  • Applying plugins to all subprojects .