Hi!
EA-Exporter supports a '*' notation to export all packages "Model/Packages/Logical View/*". Is it possible to export 2 packages of a total of 4 e.g.
"Model/Packages/Logical View/pkgA Model/Packages/Logical View/pkgB". I tried something like
<PackageName value="Model/Packages/Logical View/pkgA Model/Packages/Logical View/pkgB"/>
which threw an Exception in the workflow
Best regards
Hi
You can create a class that implements PackageFilterContributor.
In method skipPackage(String) you can skipp all the packages you won't export.
In the workflow you can add your package filter with
<PackageFilterContributor value="yourPackageFilterClass" />
Your package filter can be initialized by an xml file.
If you need an other solution, let me know.
Hope this helps.
Regards, Ueli