Evaluate a Groovy script and inject a map result.
The groovy script must return a map Java object.

For example, the following script injects the SOMEVAR environment variable with the 'someValue' value:
def map = [SOMEVAR: "someValue"]
return map
}