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

Created 29 July 2018.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.typelead.eta.base" version "0.7.7"
}

Using legacy plugin application:

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

apply plugin: "com.typelead.eta.base"

Learn how to apply plugins to subprojects