]
Michael Anstis commented on DROOLS-933:
---------------------------------------
See
for changes to *kie-wb-common*
following the change in behaviour introduced by this enhancement.
Allow to optionally pass a dependency filter when creating
KieModuleMetaData
----------------------------------------------------------------------------
Key: DROOLS-933
URL:
https://issues.jboss.org/browse/DROOLS-933
Project: Drools
Issue Type: Feature Request
Reporter: Mario Fusco
Assignee: Mario Fusco
Fix For: 6.4.x
When creating the meta data for a given KieModule it is required to optionally filter its
dependencies with the following filtering interface:
{code}
public interface DependencyFilter {
boolean accept(ReleaseId releaseId, String scope);
}
{code}