]
Jozef Marko updated DROOLS-3110:
--------------------------------
Attachment: a_dmn.dmn
[DMN Designer] Unable to deploy model with custom data type
-----------------------------------------------------------
Key: DROOLS-3110
URL:
https://issues.jboss.org/browse/DROOLS-3110
Project: Drools
Issue Type: Bug
Components: DMN Editor
Affects Versions: 7.13.0.Final
Reporter: Jozef Marko
Assignee: Daniel José dos Santos
Priority: Blocker
Labels: drools-tools
Attachments: a1.dmn, a2.dmn, a_dmn.dmn, error.log
I created the [^a1.dmn] model using features of DROOLS-3024, however then I am not able
to deploy the created dmn model, the attached [^error.log] appears in server log.
h2. Another steps to reproduce
Run the code snippet below
{code:java}
final DMNRuntime runtime = DMNRuntimeUtil.createRuntime("a2.dmn",
this.getClass() );
final DMNModel dmnModel =
runtime.getModel("https://github.com/kiegroup/drools/kie-dmn", "a2"
);
assertThat( DMNRuntimeUtil.formatMessages( dmnModel.getMessages() ),
dmnModel.hasErrors(), is( false ) );
{code}