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

0.6.6

Created 22 May 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.6.6"
}

See also:

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