Search Gradle plugins

com.rivancic.files-plugin

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.2.0 (latest)

2.2.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.2.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.rivancic:binary-plugin-with-tests:2.2.0")
      }
    }
    
    apply(plugin = "com.rivancic.files-plugin")
  • Applying plugins to all subprojects .