Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
427 views

Android: error including/repacking dependencies who reference javax core classes

I'm working on an Android app using Maven as the build tool. I managed to set evertyhing up correctly (maven dependencies are exported to the apk etc.), however I have one remaining problem which is ...
3
votes
3answers
1k views

How to use jarjar from the command-line?

I'm having trouble using jarjar from the command-line to combine a simple Scala program with the scala runtime-library. jarjar correctly detects the dependency: $ java -jar ...
2
votes
3answers
206 views

How to create a JarJar'd artifact with Maven, where use of artifact does not pull transitive dependencies?

I currently have a Java testing library which is built with Maven, and distributed as a jar. My project depends on a very common library (Objectweb ASM), and I've experienced problems where an earlier ...
1
vote
2answers
128 views

How can I use a zipfileset src attribute without having to specify it manually for all my jars?

I currently have this: <jarjar destfile="a.jar" manifest="Manifest.mf"> <zipfileset src="first.jar"/> <zipfileset src="second.jar"/> </jarjar> The problem is I have to ...
0
votes
0answers
50 views

Maven Configuration - Rename dependency w/JarJar or Shade

I'm trying to configure maven to rename an included jar file to satisfy this issue: http://code.google.com/p/google-gson/issues/detail?id=255 Essentially, I need to rename the gson jar to myjson (or ...
0
votes
2answers
68 views

How to repackage .class files from the default package using jarjar?

Is it possible to move the .class files in a jar from the default package to another named package so that I can import and use them? After browsing other questions here, I think jarjar might be ...
0
votes
1answer
133 views

JarJar - Unable to JarJar/Embedded error: ZIP file must have at least one entry

I'm having the strangest error with JarJar right now in my Maven project. It keeps spitting out the following error: [INFO] ------------------------------------------------------------------------ ...
0
votes
1answer
101 views

Maven JarJar Plugin: Exclude 'provided' scope?

Is there a way to have the Maven JarJar plugin exclude items in the 'provided' scope? This seems pretty straightforward... if something is provided, why would I want to include it in my megajar?
0
votes
1answer
116 views

Shrinking jar with its dependencies

I have a bunch of jars as a.jar, b.jar, c.jar, d.jar. a.jar is using remaining jars. I am using Test.java in a.java and remaining jars are used by a.java. I would like to make a tiny jar which is ...