作者:文love杨阳_848 | 来源:互联网 | 2023-09-03 08:51
本文整理了Java中com.github.eirslett.maven.plugins.frontend.lib.YarnInstaller.setUserName()
本文整理了Java中com.github.eirslett.maven.plugins.frontend.lib.YarnInstaller.setUserName()
方法的一些代码示例,展示了YarnInstaller.setUserName()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YarnInstaller.setUserName()
方法的具体详情如下:
包路径:com.github.eirslett.maven.plugins.frontend.lib.YarnInstaller
类名称:YarnInstaller
方法名:setUserName
YarnInstaller.setUserName介绍
暂无
代码示例
代码示例来源:origin: jooby-project/jooby
@Override
protected NodeTask newTask(FrontendPluginFactory factory, Config conf, ProxyConfig proxy,
Map env, String nodeVersion) throws InstallationException {
Function property = key -> conf.hasPath(key) ? conf.getString(key) : null;
factory.getYarnInstaller(proxy)
.setYarnVersion(yarnVersion)
.setYarnDownloadRoot(conf.getString("yarn.downloadRoot"))
.setUserName(property.apply("yarn.username"))
.setPassword(property.apply("yarn.password"))
.install();
YarnRunner yarn = factory.getYarnRunner(proxy, conf.getString("npm.registryURL"));
return (cmd, args) -> {
String cmdline = cmd + " " + Arrays.asList(args).stream().collect(Collectors.joining(" "));
yarn.execute(cmdline, env);
};
}
代码示例来源:origin: eirslett/frontend-maven-plugin
@Override
public void execute(FrontendPluginFactory factory) throws InstallationException {
ProxyConfig proxyCOnfig= MojoUtils.getProxyConfig(this.session, this.decrypter);
Server server = MojoUtils.decryptServer(this.serverId, this.session, this.decrypter);
if (null != server) {
factory.getNodeInstaller(proxyConfig).setNodeDownloadRoot(this.nodeDownloadRoot)
.setNodeVersion(this.nodeVersion).setPassword(server.getPassword())
.setUserName(server.getUsername()).install();
factory.getYarnInstaller(proxyConfig).setYarnDownloadRoot(this.yarnDownloadRoot)
.setYarnVersion(this.yarnVersion).setUserName(server.getUsername())
.setPassword(server.getPassword()).install();
} else {
factory.getNodeInstaller(proxyConfig).setNodeDownloadRoot(this.nodeDownloadRoot)
.setNodeVersion(this.nodeVersion).install();
factory.getYarnInstaller(proxyConfig).setYarnDownloadRoot(this.yarnDownloadRoot)
.setYarnVersion(this.yarnVersion).install();
}
}
代码示例来源:origin: com.github.eirslett/frontend-maven-plugin
@Override
public void execute(FrontendPluginFactory factory) throws InstallationException {
ProxyConfig proxyCOnfig= MojoUtils.getProxyConfig(this.session, this.decrypter);
Server server = MojoUtils.decryptServer(this.serverId, this.session, this.decrypter);
if (null != server) {
factory.getNodeInstaller(proxyConfig).setNodeDownloadRoot(this.nodeDownloadRoot)
.setNodeVersion(this.nodeVersion).setPassword(server.getPassword())
.setUserName(server.getUsername()).install();
factory.getYarnInstaller(proxyConfig).setYarnDownloadRoot(this.yarnDownloadRoot)
.setYarnVersion(this.yarnVersion).setUserName(server.getUsername())
.setPassword(server.getPassword()).install();
} else {
factory.getNodeInstaller(proxyConfig).setNodeDownloadRoot(this.nodeDownloadRoot)
.setNodeVersion(this.nodeVersion).install();
factory.getYarnInstaller(proxyConfig).setYarnDownloadRoot(this.yarnDownloadRoot)
.setYarnVersion(this.yarnVersion).install();
}
}