Skip to content

Commit fe00ab7

Browse files
authored
Merge pull request #50270 from holly-cummins/ecosystem-dev-service-features
Allow ecosystem extensions to use dev service result builder
2 parents e89ca76 + c2136ed commit fe00ab7

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)