Re: Building mixed Clojure/Java project

2015-09-28 Thread cyclops
One more note, I have JDK 1.6 installed - I was looking at the travis.yml, and see that openjdk6 was removed - will it run under 1.6? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Not

Re: Building mixed Clojure/Java project

2015-09-28 Thread cyclops
Many thanks for the update, especially the documentation. I got a lot further - it built a jar, but I couldn't run it: F:\ironclad\trunk> java -jar > target\ironclad-0.0.2-SNAPSHOT-jar-with-dependencies.jar > Exception in thread "main" java.lang.NoClassDefFoundError: ic/IronClad > Caused by: jav

Re: Building mixed Clojure/Java project

2015-09-28 Thread cyclops
> > Dammit, Leiningen, can't you see, the ants are winning! Thanks for the info. Looks like it's going to be more involved that I thought. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.co

Re: Building mixed Clojure/Java project

2015-09-27 Thread Mikera
Ironclad was designed to be built as a self-contained jar with all dependencies using the mvn assembly plugin, as follows: mvn assembly:single This does something pretty much equivalent to lein uberjar I pushed a couple of updates including documenting how to build to the latest develop branch

Re: Building mixed Clojure/Java project

2015-09-27 Thread Nicolás Berger
Now I had to try it by miself :). My result: `mvn package` outputs the jar (apart from running some tests, etc), but it doesn't work as `java -jar ...` as I said: it's missing the :main entry point, and after that I guess the dependencies will be missing (it's not an uberjar, so we need to build th

Re: Building mixed Clojure/Java project

2015-09-27 Thread Gregg Reynolds
Looks like Ant to me. On Sat, Sep 26, 2015 at 7:01 PM, wrote: > Hi, I'm trying to run/compile the project at > https://github.com/mikera/ironclad, with Leiningen, and no luck. > > My first attempt was trying to run it with *lein*, but as there's no >

Re: Building mixed Clojure/Java project

2015-09-27 Thread Nicolás Berger
Not a maven expert here, but I found a hint in a closed issue from the project, saying the pom.xml should be used: https :// github.com /

Building mixed Clojure/Java project

2015-09-27 Thread cyclops
Hi, I'm trying to run/compile the project at https://github.com/mikera/ironclad, with Leiningen, and no luck. My first attempt was trying to run it with *lein*, but as there's no *project.clj*, that failed. After some research, it looks like I'm supposed run the project from Java, not Clojure.