diff --git a/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/DependencyCustomizer.java b/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/DependencyCustomizer.java index 3c1d4579f1..d314392694 100644 --- a/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/DependencyCustomizer.java +++ b/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/DependencyCustomizer.java @@ -255,4 +255,11 @@ public class DependencyCustomizer { protected boolean canAdd() { return true; } + + /** + * @return the dependencyResolutionContext + */ + public DependencyResolutionContext getDependencyResolutionContext() { + return this.dependencyResolutionContext; + } }