Closed
Description
According to documentation we can do this:
<excludeObject>app.test1,app.test2</excludeObject>
But according to maven plugin sources we can pass only one parameter because string is passing without split by any delimiter
if (isNotBlank(excludeObject)) {
runner.excludeObject(excludeObject);
}