clojure-maven-plugin icon indicating copy to clipboard operation
clojure-maven-plugin copied to clipboard

Apache Maven Mojo for compiling clojure scripts to class files

Results 38 clojure-maven-plugin issues
Sort by recently updated
recently updated
newest added

Hi, I have a Clojure + ClojureScript project using cljc that I'd like to test using Maven. Both the Clojure and ClojureScript versions need to be tested at the same...

Integration test phase fails for the autodoc and marginalia projects with problems like this (probably related to a combination of Clojure, Java and autodoc/marginalia versions) ``` [DEBUG] Java exectuable used:...

I know the intention is to pick up only *.clj and *.cljc, but this code in `NamespaceDiscovery.java`: ``` scanner.addSourceMapping(new SuffixMapping(".clj", new HashSet(Arrays.asList(".clj", "__init.class")))); scanner.addSourceMapping(new SuffixMapping(".cljc", new HashSet(Arrays.asList(".cljc", "__init.class")))); ``` only...

https://jira.codehaus.org/browse/MOJO-1785 When using m-clojure-p in Eclipse with m2e you get a "Plugin execution not covered..." message from m2e. This is because it doesn't know whether to run these goals during...

when compile my project and always get this error, any idea ? [ERROR] Failed to execute goal com.theoryinpractise:clojure-maven-plugin:1.3.20:compile (compile-clojure) on project storm-core: Clojure failed. -> [Help 1] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to...

I have a Java, Scala, Clojure project and am using this plugin in that [project](https://github.com/DWiechert/functional-programming-patterns/blob/master/pom.xml#L120). When running `mvn test`, if a Java or Scala test should fail, the Clojure tests...

The README has been updated with usage examples. Before continuing working on the PR, I'd like, if possible, some remarks / criticisms on the work done so far. The PR...

In order to prevent build up of disk usage, compiling with temporaryOutputDirectory set to true should remove all compiled class files after compilation.

All the classes from dependencies end up in the packaged jar. This is different than the default of maven, and not what you want when you intend to publish the...

When clojure compiler compiles namespace with gen-class directive it recursively pulls all dependent classes. See [CLJ-322](http://dev.clojure.org/jira/browse/CLJ-322) In some maven build environments such behavior could be redundant. The following configuration will...