Search Gradle plugins

com.macwatters.elements-gradle

Elements is a framework for Java applications that allows configuration of Atoms (java classes, or groups of classes) using Groovy. See more at https://github.com/futehkao/elements. This plugin adds gradle tasks to run various provisions as well as launch scripts to applications built using the application plugin. It also facilitates copying groovy files from the conf directory into various locations, simplifying a lot of the common elements build tasks into an easy to read DSL.

https://github.com/ScottMacWatters/elements-gradle-plugin

Sources: https://github.com/ScottMacWatters/elements-gradle-plugin

Version 0.2.13 (latest)

Created 04 September 2019.

Elements is a framework for Java applications that allows configuration of Atoms (java classes, or groups of classes) using Groovy. See more at https://github.com/futehkao/elements. This plugin adds gradle tasks to run various provisions as well as launch scripts to applications built using the application plugin. It also facilitates copying groovy files from the conf directory into various locations, simplifying a lot of the common elements build tasks into an easy to read DSL.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.macwatters.elements-gradle") version "0.2.13"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.macwatters.elements-gradle:com.macwatters.elements-gradle.gradle.plugin:0.2.13")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.macwatters.elements-gradle")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.macwatters.elements-gradle:com.macwatters.elements-gradle.gradle.plugin:0.2.13")
      }
    }
    
    apply(plugin = "com.macwatters.elements-gradle")
  • Applying plugins to all subprojects .