]
Toshiya Kobayashi commented on DROOLS-1253:
-------------------------------------------
Test case
configure DSL files adding order in kie-maven-plugin
----------------------------------------------------
Key: DROOLS-1253
URL:
https://issues.jboss.org/browse/DROOLS-1253
Project: Drools
Issue Type: Feature Request
Components: integration
Affects Versions: 7.0.0.Beta1
Reporter: Toshiya Kobayashi
Assignee: Mario Fusco
When we use DSL, we need to follow "the most specific sentences must be up in the
order" principal. If we use multiple DSL files, adding order matters.
But in case of kie-maven-plugin,
https://github.com/droolsjbpm/drools/blob/master/drools-compiler/src/main...
{code:java}
for (Asset asset : assets) {
asset.kmodule.addResourceToCompiler(ckbuilder, kBaseModel, asset.name);
}
{code}
the order is decided by HashSet iterator hence it's beyond control.
So this feature request is a capability to configure the DSL files adding order for
kie-maven-plugin. For example, listing up all DLS file names in pom.xml.