Search Gradle plugins

Version 0.0.5 (latest)

0.0.5

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:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.kz.greetgo.plugins:greetgo.gradle.plugins:0.0.5")
      }
    }
    
    apply(plugin = "kz.greetgo.short-paths")
  • Applying plugins to all subprojects .