Search Gradle plugins

Version 0.1.0

Created 20 August 2020.

Kotlin Compiler Plugin to enhance your usage of Elementa

Using the plugins DSL:

plugins {
  id("dev.falsehonesty.elementa-tools") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.dev.falsehonesty:elementa-tools-gradle:0.1.0")
  }
}

apply(plugin = "dev.falsehonesty.elementa-tools")

Using the plugins DSL:

plugins {
  id "dev.falsehonesty.elementa-tools" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.dev.falsehonesty:elementa-tools-gradle:0.1.0"
  }
}

apply plugin: "dev.falsehonesty.elementa-tools"

Learn how to apply plugins to subprojects