[error] CreateProcess error=206, 파일 이름이나 확장명이 너무 깁니다
2017. 3. 6. 14:12ㆍ개발환경/gradle
CreateProcess error=206, 파일 이름이나 확장명이 너무 깁니다
task pathingJar(type: Jar) {
dependsOn configurations.runtime
appendix = 'pathing'
doFirst {
manifest {
attributes "Class-Path": configurations.runtime.files.collect {it.toURL().toString().replaceFirst("file:/", '/')}.join(" ")
}
}
}
bootRun {
addResources = false
systemProperty 'spring.profiles.active', 'local'
dependsOn pathingJar
doFirst {
classpath = files("$buildDir/classes/main", "$buildDir/resources/main", pathingJar.archivePath)
}
}