解决idea中CreateProcess error=206, 文件名或扩展名太长

看过很多教程,千篇一律,没能解决。最后,在gradle文件里面加入以下配置,即可解决。

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.viswaramamoorthy:gradle-util-plugins:0.1.0-RELEASE"
  }
}

apply plugin: "com.github.ManifestClasspath"

你可能感兴趣的:(gradle,idea,gradle)