Search Gradle plugins

com.github.ManifestClasspath

Fix for windows gradle long classpath issue. Fixes JavaExec tasks that error out with message "CreateProcess error=206, The filename or extension is too long"

Version 0.1.0-RELEASE (latest)

Created 15 April 2018.

Fix for windows gradle long classpath issue. Fixes JavaExec tasks that error out with message "CreateProcess error=206, The filename or extension is too long"

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.ManifestClasspath") version "0.1.0-RELEASE"
}

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