Search Gradle plugins

Version 0.0.5 (latest)

Created 14 August 2018.

This plugin makes your source path shorter: src - java sources, src_resooures - resources, test_src - java sources for tests, test_resources - resources for tests. Also source directories are resources source. All directories places in root of project

Add this plugin to your build using the plugins DSL:

plugins {
  id("kz.greetgo.short-paths") version "0.0.5"
}

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("kz.greetgo.short-paths:kz.greetgo.short-paths.gradle.plugin:0.0.5")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("kz.greetgo.short-paths")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("kz.greetgo.short-paths:kz.greetgo.short-paths.gradle.plugin:0.0.5")
      }
    }
    
    apply(plugin = "kz.greetgo.short-paths")
  • Applying plugins to all subprojects .