ro.amocanu.amworkflow
                  Owner:
                  
                    
                    Andreea Mocanu
                  
                
Git workflow for development teams, via Gradle tasks. Continuous-delivery style and versioned style are both supported.
https://bitbucket.org/am-bits/gradle-plugin-amworkflow
Sources: https://bitbucket.org/am-bits/gradle-plugin-amworkflow
Version 1.1 (latest)
Created 26 May 2016.
                Git workflow for development teams, via Gradle tasks. Continuous-delivery style and versioned style are both supported.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("ro.amocanu.amworkflow") version "1.1"
}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("ro.amocanu.amworkflow:ro.amocanu.amworkflow.gradle.plugin:1.1") }It can then be applied in the precompiled script plugin:plugins { id("ro.amocanu.amworkflow") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ro.amocanu.amworkflow:ro.amocanu.amworkflow.gradle.plugin:1.1") } } apply(plugin = "ro.amocanu.amworkflow")
- Applying plugins to all subprojects .