Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasgeiger committed May 3, 2016
1 parent 9b2a79e commit 8f4e419
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import betsy.common.model.engine.Engine;
import betsy.common.tasks.FileTasks;

import java.time.LocalDate;
import java.util.Optional;

/**
Expand All @@ -14,7 +15,7 @@ public class Activiti5200Engine extends ActivitiEngine {

@Override
public Engine getEngineObject() {
return new Engine(ProcessLanguage.BPMN, "activiti", "5.20.0");
return new Engine(ProcessLanguage.BPMN, "activiti", "5.20.0", LocalDate.of(2016, 4, 18), "Apache-2.0");
}

@Override
Expand Down

0 comments on commit 8f4e419

Please sign in to comment.