I am using Flowdock plugin in Jenkins. For this I need to give API token. right now I am hard coding my Flowdock API token as follow:
publishers {
flowdock(FLOWDOCK_TOKEN) {
failure()
tags('tag1', 'tag2')
}
}
Is there a way to avoid having this hard coded token in the code? Any suggestion?