ArC: remove deprecated @AlternativePriority #30963
Labels
area/arc
Issue related to ARC (dependency injection)
area/housekeeping
Issue type for generalized tasks not related to bugs or enhancements
Milestone
Description
The
@AlternativePriority
annotation has been deprecated since Quarkus 2.6 and it seem 3.0 is a good time to drop it. However, it is used in several core Quarkus extensions and at least one Quarkiverse extension, so I'm filing a separate issue for that and will submit a standalone PR. The migration path is simple: replace this annotation with the combination of:@jakarta.enterprise.inject.Alternative
+@io.quarkus.arc.Priority
(this is getting deprecated),@jakarta.enterprise.inject.Alternative
+@jakarta.annotation.Priority
.Implementation ideas
@jakarta.enterprise.inject.Alternative
+@jakarta.annotation.Priority
in the Quarkus core repo.The text was updated successfully, but these errors were encountered: