io.quarkus.arc.runtime.LaunchModeProducer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-arc Show documentation
Show all versions of quarkus-arc Show documentation
Build time CDI dependency injection
package io.quarkus.arc.runtime;
import jakarta.enterprise.context.Dependent;
import jakarta.enterprise.inject.Produces;
import io.quarkus.runtime.LaunchMode;
@Dependent
public class LaunchModeProducer {
@Produces
LaunchMode mode() {
return LaunchMode.current();
}
}