本文整理了Java中org.apache.maven.settings.Mirror.setMirrorOfLayouts()
方法的一些代码示例,展示了Mirror.setMirrorOfLayouts()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Mirror.setMirrorOfLayouts()
方法的具体详情如下:
包路径:org.apache.maven.settings.Mirror
类名称:Mirror
方法名:setMirrorOfLayouts
[英]Set the layouts of repositories being mirrored. This value can be used to restrict the usage of the mirror to repositories with a matching layout (apart from a matching id). Since Maven 3.
[中]设置要镜像的存储库的布局。此值可用于将镜像的使用限制为具有匹配布局(除了匹配id)的存储库。从Maven 3开始。
代码示例来源:origin: apache/maven
mirror.setMirrorOfLayouts( interpolatedTrimmed( parser.nextText(), "mirrorOfLayouts" ) );
代码示例来源:origin: ru.yandex.qatools.clay/clay-maven-settings-builder
/**
* Set the layouts of repositories being mirrored. This value
* can be used to restrict the usage
* of the mirror to repositories with a matching
* layout (apart from a matching id). Since Maven 3.
* @param mirrorOfLayouts
*/
public FluentMirrorBuilder withMirrorOfLayouts(String mirrorOfLayouts) {
mirror.setMirrorOfLayouts(mirrorOfLayouts);
return this;
}
}
代码示例来源:origin: org.apache.maven/maven-settings
mirror.setMirrorOfLayouts( interpolatedTrimmed( parser.nextText(), "mirrorOfLayouts" ) );
内容来源于网络,如有侵权,请联系作者删除!