We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71b94dd commit c2136edCopy full SHA for c2136ed
core/deployment/src/main/java/io/quarkus/deployment/builditem/DevServicesResultBuildItem.java
@@ -250,6 +250,11 @@ public OwnedServiceBuilder<T> feature(Feature feature) {
250
return this;
251
}
252
253
+ public OwnedServiceBuilder<T> feature(String featureName) {
254
+ this.name = featureName;
255
+ return this;
256
+ }
257
+
258
public OwnedServiceBuilder<T> description(String description) {
259
this.description = description;
260
0 commit comments