Skip to content

Commit c2136ed

Browse files
committed
Allow ecosystem extensions to use builder
1 parent 71b94dd commit c2136ed

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

core/deployment/src/main/java/io/quarkus/deployment/builditem/DevServicesResultBuildItem.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,11 @@ public OwnedServiceBuilder<T> feature(Feature feature) {
250250
return this;
251251
}
252252

253+
public OwnedServiceBuilder<T> feature(String featureName) {
254+
this.name = featureName;
255+
return this;
256+
}
257+
253258
public OwnedServiceBuilder<T> description(String description) {
254259
this.description = description;
255260
return this;

0 commit comments

Comments
 (0)