欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

修复Gradle CreateProcess error=206

程序员文章站 2022-03-03 08:23:53
...

插件地址:https://plugins.gradle.org/plugin/ua.eshepelyuk.ManifestClasspath

修复Window系统中Gradle 路径太长问题,

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"

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

apply plugin: "ua.eshepelyuk.ManifestClasspath"