I followed Conor's advice and sent everything to Glenn who will prepare a combined version. I have tested my tasks in 3.02 (JDK 1.1.7 version) and 3.5.
Wolf > -----Original Message----- > From: Timm, Sean [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 21, 2000 7:13 PM > To: '[EMAIL PROTECTED]' > Subject: RE: Tasks for exporting from Visual Age for Java > > > I'm interested. What version of VAJava is this for? > > > -----Original Message----- > > From: Siberski, Wolf [mailto:[EMAIL PROTECTED] > > Sent: Thursday, September 21, 2000 2:44 AM > > To: '[EMAIL PROTECTED]' > > Subject: Tasks for exporting from Visual Age for Java > > > > > > To automate exporting from Visual Age for Java > > I have written two ant Tasks. > > The first task loads the selected project versions > > into the VAJ workspace, the second exports > > packages from the workspace. > > Here is a usage sample: > > > > <target name="export"> > > <!-- load the right project version(s) --> > > <vajload> > > <project name="MyVAProject" version="2.1"/> > > </vajload> > > > > <!-- export all packages starting with org.foo.subsystem1 --> > > <!-- in MyVAProject except those starting with --> > > <!-- org.foo.subsystem1.test --> > > <vajexport destdir="${source.dir}"> > > <include name="/MyVAProject/org/foo/subsystem1/**"/> > > <exclude name="/MyVAProject/org/foo/subsystem1/test/**"/> > > </vajexport> > > </target> > > > > If other people are interested I would post sources > > and some instructions for use. > > > > Wolf > > >
