Search Gradle plugins

Version 3.3.0

Created 03 November 2019.

A gradle plugin for convenient use of elm.

Using the plugins DSL:

plugins {
  id("org.mohme.gradle.elm-plugin") version "3.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.mohme.gradle:elm-plugin:3.3.0")
  }
}

apply(plugin = "org.mohme.gradle.elm-plugin")

Using the plugins DSL:

plugins {
  id "org.mohme.gradle.elm-plugin" version "3.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.mohme.gradle:elm-plugin:3.3.0"
  }
}

apply plugin: "org.mohme.gradle.elm-plugin"

Learn how to apply plugins to subprojects