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)

Created 11 July 2023.

Plugin that can sort provided files based on a particular rule (alphabetically, creation date, extension)

Using the plugins DSL:

plugins {
  id("com.rivancic.files-plugin") version "2.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.rivancic:binary-plugin-with-tests:2.2.0")
  }
}

apply(plugin = "com.rivancic.files-plugin")

Using the plugins DSL:

plugins {
  id "com.rivancic.files-plugin" version "2.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.rivancic:binary-plugin-with-tests:2.2.0"
  }
}

apply plugin: "com.rivancic.files-plugin"

Learn how to apply plugins to subprojects