io.freefair.exploded-archives
                  Owner:
                  
                    
                    Lars Grefer
                  
                
Exploded Archives Plugin
https://github.com/freefair/gradle-plugins/tree/2.6
Sources: https://github.com/freefair/gradle-plugins
Version 2.5.3
Created 13 July 2018.
                This plugin adds a explode*-task for every archive task (jar, zip, ...) in your project
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("io.freefair.exploded-archives") version "2.5.3"
}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.freefair.exploded-archives:io.freefair.exploded-archives.gradle.plugin:2.5.3") }It can then be applied in the precompiled script plugin:plugins { id("io.freefair.exploded-archives") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.freefair.exploded-archives:io.freefair.exploded-archives.gradle.plugin:2.5.3") } } apply(plugin = "io.freefair.exploded-archives")
- Applying plugins to all subprojects .