com.rivancic.files-plugin
                  Owner:
                  
                    
                    Renato Ivancic
                  
                
Plugin that can sort provided files based on a particular rule (alphabetically, creation date, extension)
https://github.com/rivancic/gradle
Sources: https://github.com/rivancic/gradle
Version 2.0.0
Created 11 July 2023.
                Plugin that can sort provided files based on a particular rule (alphabetically, creation date, extension)
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.rivancic.files-plugin") version "2.0.0"
}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.rivancic.files-plugin:com.rivancic.files-plugin.gradle.plugin:2.0.0") }It can then be applied in the precompiled script plugin:plugins { id("com.rivancic.files-plugin") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.rivancic.files-plugin:com.rivancic.files-plugin.gradle.plugin:2.0.0") } } apply(plugin = "com.rivancic.files-plugin")
- Applying plugins to all subprojects .