From 947fd736caa67b108d8c89840f2f8b14431608dd Mon Sep 17 00:00:00 2001 From: David Turanski Date: Tue, 7 Sep 2021 15:59:38 -0400 Subject: [PATCH] Add spring-boot-configuration-processor dependency to groovy processor --- applications/processor/groovy-processor/README.adoc | 3 +++ applications/processor/groovy-processor/pom.xml | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/applications/processor/groovy-processor/README.adoc b/applications/processor/groovy-processor/README.adoc index b5e5487d..63aa0b3c 100644 --- a/applications/processor/groovy-processor/README.adoc +++ b/applications/processor/groovy-processor/README.adoc @@ -8,6 +8,9 @@ A Processor that applies a Groovy script against messages. The **$$groovy-processor$$** $$processor$$ has the following options: //tag::configuration-properties[] +$$groovy-processor.script$$:: $$Reference to a script used to process messages.$$ *($$Resource$$, default: `$$$$`)* +$$groovy-processor.variables$$:: $$Variable bindings as a new line delimited string of name-value pairs, e.g. 'foo=bar\n baz=car'.$$ *($$Properties$$, default: `$$$$`)* +$$groovy-processor.variables-location$$:: $$The location of a properties file containing custom script variable bindings.$$ *($$Resource$$, default: `$$$$`)* //end::configuration-properties[] //end::ref-doc[] diff --git a/applications/processor/groovy-processor/pom.xml b/applications/processor/groovy-processor/pom.xml index 6e447b02..ced2497a 100644 --- a/applications/processor/groovy-processor/pom.xml +++ b/applications/processor/groovy-processor/pom.xml @@ -74,6 +74,11 @@ + + org.springframework.boot + spring-boot-configuration-processor + provided +