io.bdeploy.gradle.plugin
                  Owner:
                  
                    
                    Markus Duft
                  
                
Plugin which builds BDeploy products from your applications
Sources: https://github.com/bdeployteam/bdeploy
Version 3.1.1-1
Created 02 October 2020.
                Plugin which builds BDeploy products from your applications
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("io.bdeploy.gradle.plugin") version "3.1.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("io.bdeploy.gradle.plugin:io.bdeploy.gradle.plugin.gradle.plugin:3.1.1-1") }It can then be applied in the precompiled script plugin:plugins { id("io.bdeploy.gradle.plugin") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.bdeploy.gradle.plugin:io.bdeploy.gradle.plugin.gradle.plugin:3.1.1-1") } } apply(plugin = "io.bdeploy.gradle.plugin")
- Applying plugins to all subprojects .