gradle-clojure
gradle-clojure copied to clipboard
Gradle plugin allowing Clojure compilation and test running
Is supporting ClojureScript in the scope/roadmap of this project, or it would require a separate Gradle Plug-in?
When Gradle detects there were no changes to the input files, it won't call Clojure compile task at all.
It appears that gradle-clojure only has support for the main and test source sets, but it would be nice to support other source sets too. Unfortunately, I'm not sure how...
Currently Clojure compile and test compile tasks don't support incremental compilation. We run builds in separated steps (e.g. `gradle -x check build` followed by `gradle check` in the same directory)...
Would be nice to have some example projects using this plug-in, or at least a WIKI page with links to open source projects that use it, so that new users...
The short form: setting the aotCompile to true causes my app to die with an exception complaining that "clojure.pprint.proxy$java.io.Writer$IDeref$PrettyFlush$4923d848 cannot be cast to clojure.pprint.PrettyFlush". After some googling, I turned up...