Wolf,

A colleague gave me similar tasks for the same purpose. I passed these onto
Glenn McAllister as I thought it would be easier for him to integrate it
into ant, since I don't use VAJ. Perhaps we can combine these two tasks.

I created an optional.ide package to cover the various IDE integrations that
might be available with ant in the future.

Conor.

> -----Original Message-----
> From: Siberski, Wolf [mailto:[EMAIL PROTECTED]
> Sent: Thursday, 21 September 2000 19:44
> 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
>

Reply via email to