All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.automatiko.engine.service.deployment.devconsole.DevConsoleProcessor Maven / Gradle / Ivy

There is a newer version: 0.36.0
Show newest version
package io.automatiko.engine.service.deployment.devconsole;

import io.automatiko.engine.service.dev.WorkflowInfoSupplier;
import io.quarkus.deployment.IsDevelopment;
import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.devconsole.spi.DevConsoleRuntimeTemplateInfoBuildItem;

public class DevConsoleProcessor {

    @BuildStep(onlyIf = IsDevelopment.class)
    public DevConsoleRuntimeTemplateInfoBuildItem collectWorkflowInfo() {
        return new DevConsoleRuntimeTemplateInfoBuildItem("workflowInfos", new WorkflowInfoSupplier());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy