Here is my Ant script for creating a jar package. I have a bunch of jar packages for the Class-Path attribute for the manifest, they are all in a specific folder.
I donβt want to hardcode it, how can I get them automatically?
<jar jarfile="${client_deploy_dir}/HelloWorld.jar" basedir="${client_work_dir}/compiled"> <manifest> <attribute name="Main-Class" value="HelloWorld.Main"/> <attribute name="Class-Path" value="???"/> </manifest> </jar>
thanks
source share