You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This gradle project failed to build on Windows. I received the following message
"A problem was found with the configuration of task ':hystrix-clj:compileClojure' (type 'ClojureCompile').
In plugin 'nebula.plugin.clojuresque.ClojureCommonPlugin' type 'nebula.plugin.clojuresque.tasks.ClojureCompile' property 'destinationDir' doesn't have a configured value.."
I noticed the code below in this plugin. It matches the output directory using the pattern 'java/main'. However, on Windows, the file separator is '\', so it always fails to build on Windows but builds successfully on Linux."
This gradle project failed to build on Windows. I received the following message
"A problem was found with the configuration of task ':hystrix-clj:compileClojure' (type 'ClojureCompile').
In plugin 'nebula.plugin.clojuresque.ClojureCommonPlugin' type 'nebula.plugin.clojuresque.tasks.ClojureCompile' property 'destinationDir' doesn't have a configured value.."
I noticed the code below in this plugin. It matches the output directory using the pattern 'java/main'. However, on Windows, the file separator is '\', so it always fails to build on Windows but builds successfully on Linux."
private File findOutputDir(SourceSet set) {
return set.output.classesDirs.files.find {
it.path.contains('clojure/main') || it.path.contains('java/main')
}
}
The text was updated successfully, but these errors were encountered: