8855eb2523
As per now if you want to configure the stash publisher and give it a username and password, you need to set them in clear text within the yaml file. This pull request gives the possibility to set these credentials within the jenkins_jobs.ini file and therefore makes it possible to not expose them to everyone. Change-Id: I2e5d6caefb87ded2468c7b7e015e20464ffef99e
14 lines
516 B
XML
14 lines
516 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<project>
|
|
<publishers>
|
|
<org.jenkinsci.plugins.stashNotifier.StashNotifier>
|
|
<stashServerBaseUrl>https://mystash</stashServerBaseUrl>
|
|
<stashUserName>user</stashUserName>
|
|
<stashUserPassword>pass</stashUserPassword>
|
|
<ignoreUnverifiedSSLPeer>true</ignoreUnverifiedSSLPeer>
|
|
<commitSha1>c</commitSha1>
|
|
<includeBuildNumberInKey>true</includeBuildNumberInKey>
|
|
</org.jenkinsci.plugins.stashNotifier.StashNotifier>
|
|
</publishers>
|
|
</project>
|