Content Replace Plugin 作为一个 Jenkins 插件,用于构建过程中对一些文本文件内容的修改替换。
比如:每次构件时需要在指定的文件中修改版本号、只在持续集成时写入一些敏感信息等,适合构建工具不支持或编写代码不方便的内容修改
插件有以下几个特点:
Content Replace Plugin支持 Freestyle job 和 Pipeline job 两种构件任务的设置方式
contentReplace( configs: [ fileContentReplaceConfig( configs: [ fileContentReplaceItemConfig( search: '(Version=)\\d+.\\d+.\\d+', replace: '$11.0.${BUILD_ID}', matchCount: 1) ], fileEncoding: 'UTF-8', filePath: 'versions.txt') ])