This content has been marked as final.
Show 2 replies
-
1. Re: UberJar archive type
aslak Oct 16, 2010 4:45 AM (in response to dan.j.allen)ShrinKWrap.create(JavaArchive.class) .as(ZipImporter.class) .importZip("a.jar") .importZip("b.jar") .as(ZipExporter.class) .exportTo(new File("shaded.jar"));
??
-
2. Re: UberJar archive type
aslak Oct 16, 2010 4:45 AM (in response to aslak)JavaArchive a = ..; JavaArchive b = ..; ShrinKWrap.create(JavaArchive.class) .merge(a) .merge(b) .as(ZipExporter.class) .exportTo(new File("shaded.jar"));