RE: Accessing manifest information from within an ant build

2002-12-05 Thread manish kumar
Users List Subject: RE: Accessing manifest information from within an ant build Dominique Devienne [EMAIL PROTECTED] said: I don't think so. Not directly. I'd define a fileset of your JARs, and write a small JavaScript to look over it, and use JDK's import java.util.jar.*; new

RE: Accessing manifest information from within an ant build

2002-11-26 Thread Dominique Devienne
[mailto:[EMAIL PROTECTED]] Sent: Saturday, November 23, 2002 2:47 AM To: Ant Users List Subject: RE: Accessing manifest information from within an ant build Dominique Devienne [EMAIL PROTECTED] said: I don't think so. Not directly. I'd define a fileset of your JARs, and write a small JavaScript

RE: Accessing manifest information from within an ant build

2002-11-23 Thread Frank Carver
Dominique Devienne [EMAIL PROTECTED] said: I don't think so. Not directly. I'd define a fileset of your JARs, and write a small JavaScript to look over it, and use JDK's import java.util.jar.*; new JarFile(filename).getManifest().getMainAttributes().getValue(

RE: Accessing manifest information from within an ant build

2002-11-22 Thread Dominique Devienne
I don't think so. Not directly. I'd define a fileset of your JARs, and write a small JavaScript to look over it, and use JDK's import java.util.jar.*; new JarFile(filename).getManifest().getMainAttributes().getValue( Attributes.Name.IMPLEMENTATATION_VERSION); Almost a one liner ;-) --DD