ua.eshepelyuk.ManifestClasspath
Owner: Evgeny Shepelyuk
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 (latest)
1.0.0
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"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.ua.eshepelyuk:ManifestClasspath:1.0.0")
}
}
apply(plugin = "ua.eshepelyuk.ManifestClasspath")
Using the plugins DSL:
plugins {
id "ua.eshepelyuk.ManifestClasspath" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.ua.eshepelyuk:ManifestClasspath:1.0.0"
}
}
apply plugin: "ua.eshepelyuk.ManifestClasspath"