clojure-maven-plugin
clojure-maven-plugin copied to clipboard
Apache Maven Mojo for compiling clojure scripts to class files
I have a project that uses Korma, which has a function "update" which now clashes with clojure.core/update, introduced in 1.7. This clash results in a compilation error in AOT projects....
When the clojure compile step fails, all I see is: ERROR] Failed to execute goal com.theoryinpractise:clojure-maven-plugin:1.3.19:compile (compile) on project MyProj: Clojure failed. -> [Help 1] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal...
I have code that needs to look over the class path. It gets it using: ``` (clojure.java.classpath/classpath) ``` Using clojure-maven-plugin 1.3.9 all is well that call gets me quite a...
I'd like to do something like: `mvn -Dtest=XXX.clj test` Is it currently possible?
Currently, even with packaging specified as Clojure, the maven compiler plugin is run before clojure compiler plugin, making classes generated from clojure using :gen-class unavailable for linking. Would it be...
This is a short term solution for making test-with-junit useful. In the long run, it should probably be pulled into the test goal as an 'output-junit' option, as right now...
It would be nice to be able to use the REPL extensions by depending on the repl artifacts like nrepl, but not have to put them in my project's actual...
`failOnWarnings` option would be nice to have
I have a dependency that is in `runtime` scope, because it's not required by Java code, but is required by clojure code. If I put it `compile` scope `maven-dependency-plugin:analyze` complains....
Hello. I have following maven configuration (full version of pom.xml is [here](https://github.com/proofit404/DataRouter/blob/master/proxy/pom.xml)): ``` jar ... com.theoryinpractise clojure-maven-plugin 1.3.10 src/main/clojure/proxy/main.clj compile compile compile test test test ... ``` I try to...