作者:IvyShao520 | 来源:互联网 | 2023-08-24 07:48
本文整理了Java中hudson.model.DependencyGraph.putComputationalData()
方法的一些代码示例,展示了DependencyGraph.putComputationalData()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。DependencyGraph.putComputationalData()
方法的具体详情如下:
包路径:hudson.model.DependencyGraph
类名称:DependencyGraph
方法名:putComputationalData
DependencyGraph.putComputationalData介绍
[英]Adds data which is useful for the time when the dependency graph is built up. All this data will be cleaned once the dependency graph creation has finished.
[中]添加在建立依赖关系图时有用的数据。一旦依赖关系图创建完成,所有这些数据都将被清除。
代码示例
代码示例来源:origin: jenkinsci/maven-plugin
graph.putComputationalData(MavenDependencyComputationData.class, data);
} else {
if (hasDependenciesWithUnknownVersion && !data.withUnknownVersions) {
代码示例来源:origin: org.jenkins-ci.plugins/ivy
graph.putComputationalData(IvyDependencyComputationData.class, data);