L
lbrtchx
say you have an application that uses some libraries (but not the
whole <*>.jar); using the "java -verbose" option you could know which
files have been loaded form the used library and either created a
smaller jar with all needed classes or, provided you have the source
code:
..
1._ replicate a source branch,
..
2._ recompile the "branched" source, and
..
3._ go: jar -cvf new_smaller.jar -C <branched_source> *.class
..
this is a pretty straight forward task and I was wondering if ant has
some kind of automation to achieve exactly this
..
Thanks
lbrtchx
whole <*>.jar); using the "java -verbose" option you could know which
files have been loaded form the used library and either created a
smaller jar with all needed classes or, provided you have the source
code:
..
1._ replicate a source branch,
..
2._ recompile the "branched" source, and
..
3._ go: jar -cvf new_smaller.jar -C <branched_source> *.class
..
this is a pretty straight forward task and I was wondering if ant has
some kind of automation to achieve exactly this
..
Thanks
lbrtchx