bva
November 3, 2020, 11:52am
1
Hello
I try to test invoice-cmis example with camunda 7.14 (https://github.com/camunda-consulting/code )
When I run the command mvn clean package
I got the following message :
package org.camunda.bpm.engine.impl.util.json does not exist
In javadoc I didn’t find it.
What should I change ?
Thank you for any help
B
That example is getting older, so you may bump your head a few times
You could try adding the json.org
dependency in the pom.xml:
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20200518</version>
</dependency>
And then you’ll have to convert the org.camunda.bpm.engine.impl.util.json
imports to:
import org.json.JSONArray;
import org.json.JSONObject;
I’m guessing at the time there was a reason to copy the json.org
into the engine impl code that has since become unncessary. Hope it helps, but given the example hasn’t been kept up, you may run into other issues.
1 Like
bva
November 5, 2020, 4:27pm
3
Hi @jgigliotti
thanks a lpot for your help. I try and come back later.
bva
November 6, 2020, 12:43pm
4
Hello,
I make the changes you suggest and it seems working. Wait for next step !
Thank you.