Search Gradle plugins

ua.eshepelyuk.ManifestClasspath

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

https://github.com/gatling/gatling-gradle-plugin

Version 1.0.0-SNAPSHOT

Created 15 May 2018.

Fix for Windows Gradle long classpath issue. Fixes JavaExec/Test tasks that error with message "CreateProcess error=206, The filename or extension is too long"

Using the plugins DSL:

plugins {
  id("ua.eshepelyuk.ManifestClasspath") version "1.0.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.ua.eshepelyuk:ManifestClasspath:1.0.0-SNAPSHOT")
  }
}

apply(plugin = "ua.eshepelyuk.ManifestClasspath")

Using the plugins DSL:

plugins {
  id "ua.eshepelyuk.ManifestClasspath" version "1.0.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.ua.eshepelyuk:ManifestClasspath:1.0.0-SNAPSHOT"
  }
}

apply plugin: "ua.eshepelyuk.ManifestClasspath"

Learn how to apply plugins to subprojects