org.mohme.gradle.elm-plugin
Owner:
T. Mohme
A gradle plugin for convenient use of elm.
https://github.com/tmohme/gradle-elm-plugin
Sources: https://github.com/tmohme/gradle-elm-plugin
Version 4.0.1 (latest)
Created 23 December 2019.
A gradle plugin for convenient use of elm.
Using the plugins DSL:
plugins {
id("org.mohme.gradle.elm-plugin") version "4.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.mohme.gradle:elm-plugin:4.0.1")
}
}
apply(plugin = "org.mohme.gradle.elm-plugin")
Using the plugins DSL:
plugins {
id "org.mohme.gradle.elm-plugin" version "4.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.mohme.gradle:elm-plugin:4.0.1"
}
}
apply plugin: "org.mohme.gradle.elm-plugin"