Java 17, Spirng boot 3, remove mongodb First commit

This commit is contained in:
nheron 2023-02-12 12:13:14 +01:00
commit 89c8e6aeea
69 changed files with 2203 additions and 104 deletions

View file

@ -5,7 +5,7 @@
<parent>
<artifactId>drools-framework-base-tools-parent</artifactId>
<groupId>com.pymmasoftware.jbpm</groupId>
<version>1.1-SNAPSHOT</version>
<version>1.2.0-SNAPSHOT</version>
</parent>

View file

@ -7,6 +7,9 @@ public class DummyFact {
private DummyFact property;
private List<DummyFact> listOfFacts;
public DummyFact() {
}
DummyFact(String name) {
this.name = name;
}