use of org.kie.workbench.common.services.backend.builder.ala.LocalBuildExecConfigExecutor in project kie-wb-common by kiegroup.
the class DataModelServiceConstructorTest method getConfigExecutors.
private Collection<ConfigExecutor> getConfigExecutors(KieModuleService moduleService, BuildHelper buildHelper) {
Collection<ConfigExecutor> configs = new ArrayList<>();
configs.add(new LocalSourceConfigExecutor());
configs.add(new LocalModuleConfigExecutor(moduleService));
configs.add(new LocalBuildConfigExecutor());
configs.add(new LocalBuildExecConfigExecutor(buildHelper));
return configs;
}
Aggregations