I would like to unjar multiple JAR files and then rebuild into one JAR using an ant build script. Is this possible?
|
Yes, it's possible with ant. A jar file is basically a zip with a special manifest file. So to unjar, we need to unzip the jars. Ant includes an unzip task. To unzip/unjar all the jar files in your project:
Obviously you need to declare ${build.dir} and ${lib.dir} first. The line To pack everything into a jar, you use the jar task:
In this example, we include different filesets. In one fileset we are including all compiled classes. In another fileset we include two config files that this particular project depends upon. |
||||
|
|
|
Yes it is ! You have two possibilities :
This is useful if you don't need to exclude content that are in some jars (like for example some properties configuration file that might override yours, etc). Here the excludes properties is filtering out files from the dir property.
The other solution is to use the zipfileset tag where the excludes property this time will filter out content from the jar to be merged.
|
||||
|
|
|
Yes, it's possible. One possible solution that creates one jar file from all the jar files in a given directory:
|
|||
|
|