io.automatiko.engine.service.deployment.devconsole.DevConsoleProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automatiko-service-deployment Show documentation
Show all versions of automatiko-service-deployment Show documentation
Service Deployment module for Quarkus Extension for Automatiko Engine
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());
}
}