com.buddybuild.bbgradleenvinterceptor
                  Owner:
                  
                    
                    buddybuild
                  
                
Plugin used to intercept gradle environment information.
Sources: https://github.com/BuddyBuild/BBGradlePlugins.git
Version 0.0.185
Created 29 June 2017.
                Plugin used to intercept gradle environment information.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.buddybuild.bbgradleenvinterceptor") version "0.0.185"
}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.buddybuild.bbgradleenvinterceptor:com.buddybuild.bbgradleenvinterceptor.gradle.plugin:0.0.185") }It can then be applied in the precompiled script plugin:plugins { id("com.buddybuild.bbgradleenvinterceptor") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.buddybuild.bbgradleenvinterceptor:com.buddybuild.bbgradleenvinterceptor.gradle.plugin:0.0.185") } } apply(plugin = "com.buddybuild.bbgradleenvinterceptor")
- Applying plugins to all subprojects .