From 6ba8269db84237df70a2a54d320b8cc881123b1b Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Thu, 31 Jul 2014 15:57:41 -0700 Subject: [PATCH] Add public getter for dependency context --- .../boot/cli/compiler/DependencyCustomizer.java | 7 +++++++ 1 file changed, 7 insertions(+) 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; + } }