Hello,
I'd like to write an
Ant task to import an ear file. I've seen the example that creates a task to export an ear file at
Using Ant with WebSphere Studio Application Developer articles from IBM.
The class I want to use is the com.ibm.etools.archive.ear.operations.EARImportOperation. However, its constructor takes the following types as parameters: IProject and EARFile.
My understanding is that IProject is an interface.
My problem is that I'm trying to find the jar file in the WSAD installation that contains the EARFile implementation and the class that implements the IProject class.
Does anyone know what jars these are in?
Steve