本文整理了Java中org.sonatype.aether.artifact.Artifact.setProperties()
方法的一些代码示例,展示了Artifact.setProperties()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Artifact.setProperties()
方法的具体详情如下:
包路径:org.sonatype.aether.artifact.Artifact
类名称:Artifact
方法名:setProperties
[英]Sets the properties for the artifact.
[中]设置工件的属性。
代码示例来源:origin: org.eclipse.proviso/proviso-spi
public Artifact setProperties( Map<String, String> properties )
{
Artifact artifact = delegate.setProperties( properties );
if ( artifact != delegate )
{
return newInstance( artifact );
}
return this;
}
代码示例来源:origin: sonatype/sonatype-aether
public Artifact setProperties( Map<String, String> properties )
{
Artifact artifact = delegate.setProperties( properties );
if ( artifact != delegate )
{
return newInstance( artifact );
}
return this;
}
代码示例来源:origin: org.sonatype.aether/aether-impl
dependency = dependency.setArtifact( artifact.setProperties( depMngt.getProperties() ) );
代码示例来源:origin: sonatype/sonatype-aether
dependency = dependency.setArtifact( artifact.setProperties( depMngt.getProperties() ) );
内容来源于网络,如有侵权,请联系作者删除!