Tagged Questions
The uberjar tag has no wiki summary.
6
votes
4answers
3k views
Is it possible to create an “uber” jar containing the project classes and the project dependencies as jars with a custom manifest file?
I'm trying to create a executable jar(using maven) that contains the project classes and it's dependencies with a manifest file that has the entry for the main class and the class path entry that ...
5
votes
2answers
1k views
Using Maven shade plugin in a multi module project
I have a scenario where-in I need to create an uber jar of a multi module maven project including all modules and their dependencies. I tried using maven shade plugin. but it seems to work only when I ...
2
votes
1answer
66 views
Clojure symbol evaluation error
So I currently have this code:
(ns contact-form.core
(:gen-class))
(def foo "Hello World!")
(defn some-func [a-symbol]
(println (str a-symbol "'s value is: " (eval a-symbol))))
(defn -main ...
1
vote
3answers
848 views
after assembling jar - No Persistence provider for EntityManager named
im developing a standalone application and it works fine when starting it from my ide(intellij idea), but after creating an uberjar and start the application from it ...
0
votes
1answer
43 views
Running a JAR file created by Leiningen
I have the following code in the file project.clj:
(defproject pinger "0.0.1-SNAPSHOT"
:description "A website availability tester"
:dependencies [[org.clojure/clojure "1.3.0"]]
:main ...
0
votes
1answer
33 views
Leiningen - way to automate removal of *.DSA and *.SF files (Clojure Maven)
I'm using Leiningen to automate the creation of a single 'uberjar' from several dependencies. (For a Web Start Application).
Some of the jar files are signed, and the uberjar process brings across ...
0
votes
2answers
1k views
Can I specify a JPA compliant persistence.xml file on the java command line?
I've got an UberJar with all my java classes, but want to execute this jar with an external persistence.xml file. Per the specification, Hibernate (or any other JPA provider) looks for the ...