(chore) engine version in engine info

This commit is contained in:
Andreas Penski (init) 2020-07-08 13:29:01 +02:00
parent 08d43dc9ab
commit 5a7c6775b1
2 changed files with 4 additions and 1 deletions

View file

@ -92,7 +92,7 @@ public class DefaultCheck implements Check {
protected static CreateReportInput createReport() {
final CreateReportInput type = new CreateReportInput();
final EngineType e = new EngineType();
e.setName(EngineInformation.getName());
e.setName(EngineInformation.getName() + " " + EngineInformation.getVersion());
type.setEngine(e);
type.setTimestamp(createTimestamp());
type.setFrameworkVersion(EngineInformation.getFrameworkVersion());