Search Gradle plugins

Version 0.1.3

Created 05 February 2017.

A gradle plugin for convenient use of elm.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects