File tree Expand file tree Collapse file tree 4 files changed +17
-11
lines changed
src/main/java/com/tencent/bk/devops/atom Expand file tree Collapse file tree 4 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 2929| v1.0.5 | 更新jackson到2.12.0 |
3030| v1.0.6 | 兼容gateway网关地址带协议头情况 |
3131| v1.0.7 | guava由19.0升级到30.1.1-jre,okhttp由3.12.0升级到4.9.1,ant由1.10.9升级到1.10.10 |
32- | v1.0.8 | 增加一些工具类,增加一些docker相关代码
33- | v1.0.9 | ReportData 增加指定发送邮件的参数功能
34- | v1.1.0 | 命令行工具日志流统一为标准输出流
35- | v1.1.1 | 规范dockerRun日志输出
36- | v1.1.2 | 修复Java市场插件默认输出至错误流
37- | v1.1.3 | 获取插件私有配置优化
38- | v1.1.4 | 升级jackson开源组件漏洞版本
39- | v1.1.5 | 新增kubernetes构建资源相关api
40- | v1.1.6 | 优化日志打印
32+ | v1.0.8 | 增加一些工具类,增加一些docker相关代码 |
33+ | v1.0.9 | ReportData 增加指定发送邮件的参数功能 |
34+ | v1.1.0 | 命令行工具日志流统一为标准输出流 |
35+ | v1.1.1 | 规范dockerRun日志输出 |
36+ | v1.1.2 | 修复Java市场插件默认输出至错误流 |
37+ | v1.1.3 | 获取插件私有配置优化 |
38+ | v1.1.4 | 升级jackson开源组件漏洞版本 |
39+ | v1.1.5 | 新增kubernetes构建资源相关api |
40+ | v1.1.6 | 优化日志打印 |
41+ | v1.1.7 | 新增kubernetes构建资源相关api |
42+ | v1.1.8 | 增加fileGateway |
4143
4244[ TOC]
4345
Original file line number Diff line number Diff line change 66
77 <groupId >com.tencent.devops.ci-plugins</groupId >
88 <artifactId >java-plugin-sdk</artifactId >
9- <version >1.1.7 </version >
9+ <version >1.1.8 </version >
1010
1111 <inceptionYear >2018-2118</inceptionYear >
1212 <description >bk-ci pipeline plugins sdk for java</description >
Original file line number Diff line number Diff line change 66import com .tencent .bk .devops .atom .spi .AtomService ;
77import com .tencent .bk .devops .atom .spi .ServiceLoader ;
88import com .tencent .bk .devops .atom .spi .TaskAtom ;
9- import com .tencent .bk .devops .plugin .pojo .ErrorType ;
109import org .slf4j .Logger ;
1110import org .slf4j .LoggerFactory ;
1211
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ public class SdkEnv {
3333 private String gateway ;
3434 private String buildId ;
3535 private String vmSeqId ;
36+ private String fileGateway ;
3637
3738 private static SdkEnv instance ;
3839
@@ -102,4 +103,8 @@ public static String getGatewayHost() {
102103 public static String getVmSeqId () {
103104 return instance .vmSeqId ;
104105 }
106+
107+ public static String getFileGateway () {
108+ return instance .fileGateway ;
109+ }
105110}
You can’t perform that action at this time.
0 commit comments