Search Gradle plugins

org.lukosan.gradle-local-dependencies-plugin

Gradle plugin that builds other gradle projects (i.e. not subprojects) and then makes the resulting jars available as a compile dependency to this project.

https://github.com/lukosan/gradle-local-dependencies-plugin

Version 0.0.1.DEV (latest)

Created 27 January 2015.

No version description available.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.lukosan.gradle-local-dependencies-plugin") version "0.0.1.DEV"
}

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