The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
35 views

Java Maven project minify the build

I am working on a multi module Maven project. We have created a project which builds an uber jar. The unpacked jar is about 60mb which is a problem for our client. Are there any tools we can use to ...
0
votes
0answers
17 views

Maven 3 “uber jar” how to embed a jar within a jar?

This has been killing me all day. I am working on android / java in eclipse. This is what I want to do I want to embed one of my libraries - DatabaseLibrary within another of my libraries - ...
0
votes
1answer
25 views

How to assembly maven project using jarjar format?

I tried some assembly plugins like maven-assembly-plugin , maven-shading-plugin but none of them support jarjar file format. So is there a maven plugin to assembly Uber-Jar by jarjar file format? ...
0
votes
1answer
56 views

Create maven uberjar without including an internal pom file

I have a maven build setup but it has been requested that I make one change to the uberjar and that is to not include the pom file, because it messes up my clients subsequent build that uses my ...
0
votes
1answer
52 views

Maven onejar plugin, get a properties file

I am using the Maven onejar plugin (https://code.google.com/p/onejar-maven-plugin/) to create an uberjar. I want to access a properties file which is in the root of my classpath like this: ...
0
votes
1answer
237 views

Jetty uberjar jndi datasource configuration

More specifically i got executable war containing all the dependencies. Application starts without jndi datasource like a charm runing it with jndi datasource failed though. I believe there is no ...
0
votes
2answers
39 views

Ant: how to create <jar> that includes files from <path>?

Given an Ant path element like the following one: <path id="compile.classpath"> <pathelement location="${common.jar}"/> <pathelement location="${servlet.jar}"/> ...
4
votes
1answer
71 views

Icons disappearing in uberjar made with Leiningen

I have made a funky application in Clojure with a simple Swing gui containing some JButtons with some icons, and I want my non-programmer friends to be able to use it too. It works all fine on my own ...
1
vote
0answers
81 views

How can I use a library deployed as an uberjar?

I'm trying to use the Reflections 0.9.8 library, which comes as an uber-jar. If I add its JAR ("reflections-0.9.8-uberjar") within my project's build path then Eclipse won't find any of its class ...
1
vote
1answer
149 views

Having difficulty creating an uber-jar

I'm trying to bundle up a java archive (JAR) with all dependencies self contained. First I tried using the maven assembly plugin though this was missing some classes. The jar-with-dependencies ...
8
votes
2answers
991 views

What is an uber jar?

I am reading Maven documentation and came across the name 'uber-jar'. What does an uber-jar mean and what are its features/advantages?
0
votes
2answers
316 views

How to Include a SINGLE dependency into a jar using maven and fatjar plugin

I feel a bit stupid about this question but i can't figure out how to add a SINGLE dependency (jdom.jar) into another jar. Context: We developed a simple plug-in for our application, this plug-in ...
2
votes
2answers
1k views

Building a uberjar with Gradle

I am a Gradle novice. I want to build a uberjar that includes all the transitive dependencies of the project. What lines do I need to add to my "build.gradle"? This is what I currently have: (I ...
7
votes
2answers
364 views

make lein uberjar without source files

I'm using 'lein uberjar' to make a executable jar file of my project. the jar is created correctly and runs as expected. I just want to know if it is possible to NOT include my source .clj files in ...
0
votes
0answers
53 views

Using Leiningen to package a release in a .zip file containing the uberjar

(1) I'm currently using lein uberjar to create a nice stand-alone JAR file for my Clojure application. (2) I then manually copy a README file and a couple of sample files into the same directory as ...
2
votes
0answers
54 views

how to add a hook into the uberjar process (building with lein)

i would like to add a hook to the uberjar process. the specific example is to download the maxmind geoip dat file into the resources folder so an updated version is bundled into the jar every time it ...
1
vote
2answers
350 views

maven - How to build uberjars with dependencies

I have a maven module generating a jar file. I have been asked to develop a couple of other uberjar files as a byproduct of build process. I have also been told these 2 jar files are applet jar files ...
0
votes
1answer
304 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
2answers
116 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 ...
3
votes
1answer
884 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 ...
10
votes
2answers
3k views

Using Maven shade plugin in a multi module project - NullPointerException

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 ...
1
vote
3answers
1k 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 ...
11
votes
4answers
8k 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 ...
0
votes
2answers
2k 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 ...