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 +