Created
January 11, 2019 00:07
-
-
Save michaelneale/dc474b73b7223dc8a5e799bd16a1dff5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//def ConfigEnviroment = [:] | |
//ConfigEnviroment['fromEmail'] = "noreply@adobe.com" | |
def info(message) { | |
echo "INFO: ${message}" | |
} | |
def warning(message) { | |
echo "WARNING: ${message}" | |
} | |
def configEnvironment() { | |
var cfg = [:] | |
cfg['fromEmail'] = "noreply@adobe.com" | |
return cfg | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment